import type * as Brevo from "../../../../index.js";
/**
 * @example
 *     {}
 */
export interface GetWhatsAppCampaignsRequest {
    /** **Mandatory if endDate is used**. Starting (urlencoded) UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ) to filter the WhatsApp campaigns created. **Prefer to pass your timezone in date-time format for accurate result** */
    startDate?: string;
    /** **Mandatory if startDate is used**. Ending (urlencoded) UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ) to filter the WhatsApp campaigns created. **Prefer to pass your timezone in date-time format for accurate result** */
    endDate?: string;
    /** Number of documents per page */
    limit?: number;
    /** Index of the first document in the page */
    offset?: number;
    /** Sort the results in the ascending/descending order of record modification. Default order is **descending** if `sort` is not passed */
    sort?: Brevo.GetWhatsAppCampaignsRequestSort;
}
