/** * Finix API */ export declare class ListMerchantVerificationsQueryParams { /** * The number of entries to return. */ 'limit'?: number; /** * Return every resource created after the cursor value. */ 'afterCursor'?: string; /** * Return every resource created before the cursor value. */ 'beforeCursor'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }