@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
22 lines (21 loc) • 658 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AgentChatAttachment = void 0;
var Mapper_1 = require("../common/Mapper");
/**
* @export
* @class AgentChatAttachment
*/
var AgentChatAttachment = /** @class */ (function () {
function AgentChatAttachment(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);
}
return AgentChatAttachment;
}());
exports.AgentChatAttachment = AgentChatAttachment;
exports.default = AgentChatAttachment;