Interface MailChangesResponse

interface MailChangesResponse {
    accountId: string;
    created: string[];
    destroyed: string[];
    hasMoreChanges: boolean;
    newState: string;
    oldState: string;
    updated: string[];
    updatedProperties: null | string[];
}

Hierarchy (view full)

Properties

accountId: string
created: string[]
destroyed: string[]
hasMoreChanges: boolean
newState: string
oldState: string
updated: string[]
updatedProperties: null | string[]