@microsoft/agents-hosting
Version:
Microsoft 365 Agents SDK for JavaScript
23 lines (22 loc) • 465 B
TypeScript
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { AttachmentView } from './attachmentView';
/**
* Represents information about an attachment.
*/
export interface AttachmentInfo {
/**
* The name of the attachment.
*/
name: string;
/**
* The type of the attachment.
*/
type: string;
/**
* The views of the attachment.
*/
views: AttachmentView[];
}