/** * Finix API */ export declare class ListFilesQueryParams { /** * Specify key to be used for sorting the collection. */ 'sort'?: string; /** * Return every resource created after the cursor value. */ 'afterCursor'?: string; /** * The numbers of items to return. */ 'limit'?: number; /** * Filter by `id`. */ 'id'?: string; /** * 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; /** * 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; }[]; }