/** * Copyright © 2025 Anonyome Labs, Inc. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 */ /** * The Sudo Platform SDK representation of the draft email message metadata. * * @interface DraftEmailMessageMetadata * @property {string} id Unique identifier of the draft email message. * @property {string} emailAddressId Unique identifier of the email address associated with the draft * email message. * @property {Date} updatedAt Time at which the draft was last updated * @property {string} [emailMaskId] Unique identifier of the email mask associated with the draft email message, if any. */ export interface DraftEmailMessageMetadata { id: string; emailAddressId: string; updatedAt: Date; emailMaskId?: string; }