/**
 * @example
 *     {}
 */
export interface GetAccountActivityRequest {
    /**
     * Mandatory if endDate is used. Enter start date in UTC date (YYYY-MM-DD)
     * format to filter the activity in your account. Maximum time period that
     * can be selected is one month. Additionally, you can retrieve activity
     * logs from the past 12 months from the date of your search.
     */
    startDate?: string;
    /**
     * Mandatory if startDate is used. Enter end date in UTC date (YYYY-MM-DD)
     * format to filter the activity in your account. Maximum time period that
     * can be selected is one month.
     */
    endDate?: string;
    /** Enter the user's email address to filter their activity in the account. */
    email?: string;
    /** Number of documents per page */
    limit?: number;
    /** Index of the first document in the page. */
    offset?: number;
}
