@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
24 lines (23 loc) • 777 B
TypeScript
import AgentChatAttachmentsData from './AgentChatAttachmentsData';
import AgentChatMessagePart from './AgentChatMessagePart';
import AgentChatMessagePartType from './AgentChatMessagePartType';
/**
* @export
* @class AgentChatAttachmentsPart
*/
export declare class AgentChatAttachmentsPart extends AgentChatMessagePart {
/**
* Discriminator property for AgentChatMessagePart
* @type {string}
* @memberof AgentChatAttachmentsPart
*/
readonly type: AgentChatMessagePartType;
/**
* Attachment payload (required)
* @type {AgentChatAttachmentsData}
* @memberof AgentChatAttachmentsPart
*/
data?: AgentChatAttachmentsData;
constructor(obj?: Partial<AgentChatAttachmentsPart>);
}
export default AgentChatAttachmentsPart;