import type * as Brevo from "../../../../index.js";
/**
 * @example
 *     {}
 */
export interface GetCompaniesRequest {
    /** Filter by attrbutes. If you have filter for owner on your side please send it as {"attributes.owner":"6299dcf3874a14eacbc65c46"} */
    filters?: string;
    /** Filter by linked contacts ids */
    linkedContactsIds?: number;
    /** Filter by linked Deals ids */
    linkedDealsIds?: 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 */
    page?: 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.GetCompaniesRequestSort;
    /** The field used to sort field names. */
    sortBy?: string;
}
