prodap-chatbot-domain
Version:
Classes utilizadas na resposta de todas as Intents do Assistente Virtual
15 lines • 495 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class ActionAbstract {
constructor(props, type) {
this.color = props.color || undefined;
this.hideIconInMessage = props.hideIconInMessage;
this.icon = props.icon;
this.isPlaying = props.isPlaying || false;
this.label = props.label;
this.text = props.text;
this.type = type;
}
}
exports.default = ActionAbstract;
//# sourceMappingURL=ActionAbstract.js.map