import type * as Brevo from "../../../../index.js";
/**
 * @example
 *     {}
 */
export interface GetTransacBlockedContactsRequest {
    /** **Mandatory if endDate is used.** Starting date (YYYY-MM-DD) from which you want to fetch the blocked or unsubscribed contacts */
    startDate?: string;
    /** **Mandatory if startDate is used.** Ending date (YYYY-MM-DD) till which you want to fetch the blocked or unsubscribed contacts */
    endDate?: string;
    /** Number of documents returned per page */
    limit?: number;
    /** Index of the first document on the page */
    offset?: number;
    /** Comma separated list of emails of the senders from which contacts are blocked or unsubscribed */
    senders?: string | string[];
    /** Sort the results in the ascending/descending order of record creation. Default order is **descending** if `sort` is not passed */
    sort?: Brevo.GetTransacBlockedContactsRequestSort;
}
