import type * as Brevo from "../../../../index.js";
/**
 * @example
 *     {}
 */
export interface GetCrmFilesRequest {
    /** Filter by file entity type */
    entity?: Brevo.GetCrmFilesRequestEntity;
    /** Filter by file entity IDs */
    entityIds?: string;
    /** dateFrom to date range filter type (timestamp in milliseconds) */
    dateFrom?: number;
    /** dateTo to date range filter type (timestamp in milliseconds) */
    dateTo?: number;
    /** Index of the first document of the page */
    offset?: number;
    /** Number of documents per page */
    limit?: number;
    /** Sort the results in the ascending/descending order. Default order is **descending** by creation if `sort` is not passed */
    sort?: Brevo.GetCrmFilesRequestSort;
}
