import type * as Brevo from "../../../../index.js";
/**
 * @example
 *     {}
 */
export interface GetCrmNotesRequest {
    /** Filter by note entity type */
    entity?: Brevo.GetCrmNotesRequestEntity;
    /** Filter by note 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.GetCrmNotesRequestSort;
}
