import type * as Brevo from "../../../../index.js";
/**
 * @example
 *     {}
 */
export interface GetCrmDealsRequest {
    /** Filter by attributes. If you have a filter for the owner on your end, please send it as filters[attributes.deal_owner] and utilize the account email for the filtering. */
    "filters[attributes.deal_name]"?: string;
    /** Filter by linked companies ids */
    "filters[linkedCompaniesIds]"?: string;
    /** Filter by linked companies ids */
    "filters[linkedContactsIds]"?: string;
    /** Filter (urlencoded) the contacts modified after a given UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ). Prefer to pass your timezone in date-time format for accurate result. */
    modifiedSince?: string;
    /** Filter (urlencoded) the contacts created after a given UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ). Prefer to pass your timezone in date-time format for accurate result. */
    createdSince?: string;
    /** 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.GetCrmDealsRequestSort;
}
