@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
29 lines (28 loc) • 629 B
TypeScript
/**
* @export
* @class AgentChatAttachment
*/
export declare class AgentChatAttachment {
/**
* Attachment kind (required)
* @type {string}
* @memberof AgentChatAttachment
*/
kind?: string;
/**
* Tool call identifier
* @type {string}
* @memberof AgentChatAttachment
*/
toolCallId?: string;
/**
* Attachment attributes map (required)
* @type {{ [key: string]: any; }}
* @memberof AgentChatAttachment
*/
attributes?: {
[key: string]: any;
};
constructor(obj?: Partial<AgentChatAttachment>);
}
export default AgentChatAttachment;