import type * as Brevo from "../../../../index.js";
/**
 * @example
 *     {}
 */
export interface GetSmsCampaignsRequest {
    /** Status of campaign. */
    status?: Brevo.GetSmsCampaignsRequestStatus;
    /** **Mandatory if endDate is used.** Starting (urlencoded) UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ) to filter the sent sms campaigns. **Prefer to pass your timezone in date-time format for accurate result** ( only available if either 'status' not passed and if passed is set to 'sent' ) */
    startDate?: string;
    /** **Mandatory if startDate is used.** Ending (urlencoded) UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ) to filter the sent sms campaigns. **Prefer to pass your timezone in date-time format for accurate result** ( only available if either 'status' not passed and if passed is set to 'sent' ) */
    endDate?: string;
    /** Number limitation for the result returned */
    limit?: number;
    /** Beginning point in the list to retrieve from. */
    offset?: number;
    /** Sort the results in the ascending/descending order of record creation. Default order is **descending** if `sort` is not passed */
    sort?: Brevo.GetSmsCampaignsRequestSort;
}
