Interface EmailSubmissionSetRequest

interface EmailSubmissionSetRequest {
    accountId: string;
    create: null | Record<string, any>;
    destroy: null | string[];
    ifInState?: null | string;
    onSuccessDestroyEmail?: null | string;
    onSuccessUpdateEmail?: null | Record<string, unknown>;
    update: null | Record<string, any>;
}

Hierarchy (view full)

Properties

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