/**
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License.
 */

/**
 * Represents the data of an attachment.
 */
export interface AttachmentData {
  /**
   * The type of the attachment.
   */
  type: string;
  /**
   * The name of the attachment.
   */
  name: string;
  /**
   * The original data of the attachment in Base64 format.
   */
  originalBase64: Uint8Array;
  /**
   * The thumbnail data of the attachment in Base64 format.
   */
  thumbnailBase64: Uint8Array;
}
