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