Interface EmailSetRequest

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

Hierarchy (View Summary)

Properties

accountId: string
create: null | Record<string, any>
destroy: null | string[]
ifInState?: null | string

state from /get response. If null use current state

keywords: Keywords
mailboxIds: Record<string, boolean>
receivedAt: string

default: time of creation on server

update: null | Record<string, any>