Interface EmailSetRequest

interface EmailSetRequest {
    accountId: string;
    create: null | Record<string, any>;
    destroy: null | string[];
    ifInState?: null | string;
    keywords: Record<string, true>;
    mailboxIds: Record<string, boolean>;
    receivedAt: string;
    update: null | Record<string, any>;
}

Hierarchy (view full)

Properties

accountId: string
create: null | Record<string, any>
destroy: null | string[]
ifInState?: null | string
keywords: Record<string, true>
mailboxIds: Record<string, boolean>
receivedAt: string
update: null | Record<string, any>