/** * Copyright © 2025 Anonyome Labs, Inc. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 */ /** * The Sudo Platform SDK representation of the result of a successful delete operation of an email message. * * @interface DeleteEmailMessageSuccessResult * @property {string} id The unique identifier of the email message. */ export interface DeleteEmailMessageSuccessResult { id: string; }