import type * as Brevo from "../../../../index.js";
/**
 * @example
 *     {}
 */
export interface GetSmtpReportRequest {
    /** Number of documents returned per page */
    limit?: number;
    /** Index of the first document on the page */
    offset?: number;
    /** **Mandatory if endDate is used.** Starting date of the report (YYYY-MM-DD) */
    startDate?: string;
    /** **Mandatory if startDate is used.** Ending date of the report (YYYY-MM-DD) */
    endDate?: string;
    /** Number of days in the past including today (positive integer). _Not compatible with 'startDate' and 'endDate'_ */
    days?: number;
    /** Tag of the emails */
    tag?: string;
    /** Sort the results in the ascending/descending order of record creation. Default order is **descending** if `sort` is not passed */
    sort?: Brevo.GetSmtpReportRequestSort;
}
