import type * as Brevo from "../../../../index.js";
/**
 * @example
 *     {}
 */
export interface GetInboundEmailEventsRequest {
    /** Email address of the sender. */
    sender?: string;
    /** Mandatory if endDate is used. Starting date (YYYY-MM-DD or YYYY-MM-DDTHH:mm:ss.SSSZ) from which you want to fetch the list. Maximum time period that can be selected is one month. */
    startDate?: string;
    /** Mandatory if startDate is used. Ending date (YYYY-MM-DD or YYYY-MM-DDTHH:mm:ss.SSSZ) till which you want to fetch the list. Maximum time period that can be selected is one month. */
    endDate?: string;
    /** Number of documents returned per page */
    limit?: number;
    /** Index of the first document on the page */
    offset?: number;
    /** Sort the results in the ascending/descending order of record creation */
    sort?: Brevo.GetInboundEmailEventsRequestSort;
}
