/** * Finix API */ export declare class ListDisputesQueryParams { /** * Specify key to be used for sorting the collection. */ 'sort'?: string; /** * The number of items to skip before starting to collect the result set. */ 'offset'?: number; /** * The numbers of items to return. */ 'limit'?: number; /** * Filter where `created_at` is after the given date. */ 'createdAtGte'?: string; /** * Filter where `created_at` is before the given date. */ 'createdAtLte'?: string; /** * Filter where `updated_at` is after the given date. */ 'updatedAtGte'?: string; /** * Filter where `updated_at` is before the given date. */ 'updatedAtLte'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }