UpdateWorkspaceEmailBody

Request body for a Workspace operation.

Definition

TypeScript
interface UpdateWorkspaceEmailBody {
  enabled?: boolean | undefined;
  config?:
    | {
        maxBytes?: number | undefined;
        allowedSenders?: Array<string> | undefined;
      }
    | null
    | undefined;
}

Fields

FieldTypeNotes
enabledboolean | undefinedoptional — Enable or disable the gateway.
config{ maxBytes?: number | undefined; allowedSenders?: Array<string> | undefined; } | null | undefinedoptional — Replace the email config jsonb. Pass null to clear.