/**
 * @example
 *     {
 *         uuid: "uuid"
 *     }
 */
export interface GetInboundEmailEventsByUuidRequest {
    /** UUID to fetch events specific to received email */
    uuid: string;
}
