UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

21 lines (20 loc) 580 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AgentChatAttachment = void 0; const Mapper_1 = require("../common/Mapper"); /** * @export * @class AgentChatAttachment */ class AgentChatAttachment { constructor(obj) { if (!obj) { return; } this.kind = (0, Mapper_1.map)(obj.kind); this.toolCallId = (0, Mapper_1.map)(obj.toolCallId); this.attributes = (0, Mapper_1.map)(obj.attributes); } } exports.AgentChatAttachment = AgentChatAttachment; exports.default = AgentChatAttachment;