Interface MailSetResponse

interface MailSetResponse {
    accountId: string;
    created?: Record<string, any>;
    destroyed?: string[];
    newState: string;
    notCreated?: Record<string, SetError>;
    notDestroyed?: Record<string, SetError>;
    notUpdated?: Record<string, SetError>;
    oldState: string;
    onDestroyRemoveEmails: boolean;
    updated?: Record<string, any>;
}

Hierarchy (view full)

Properties

accountId: string
created?: Record<string, any>
destroyed?: string[]
newState: string
notCreated?: Record<string, SetError>
notDestroyed?: Record<string, SetError>
notUpdated?: Record<string, SetError>
oldState: string
onDestroyRemoveEmails: boolean
updated?: Record<string, any>