prodap-chatbot-domain
Version:
Classes utilizadas na resposta de todas as Intents do Assistente Virtual
29 lines • 1.2 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FeedbackOptionsType = void 0;
const FormAbstract_1 = require("./FormAbstract");
const FormTypes_1 = require("./FormTypes");
var FeedbackOptionsType;
(function (FeedbackOptionsType) {
FeedbackOptionsType["SIMPLE"] = "SIMPLE";
FeedbackOptionsType["SELECT"] = "SELECT";
})(FeedbackOptionsType || (exports.FeedbackOptionsType = FeedbackOptionsType = {}));
class Feedback extends FormAbstract_1.default {
constructor(props) {
super(props, FormTypes_1.default.FEEDBACK);
this.title = props.title;
this.options = props.options;
this.category = props.category;
this.period = props.period;
this.textVotingDetails = props.textVotingDetails;
this.origin = props.origin;
this.isClosable = props.isClosable;
this.borderRadius = props.borderRadius;
this.shadowColor = props.shadowColor;
this.colorTitle = props.colorTitle;
this.keyStorageFeedbackId = props.keyStorageFeedbackId;
this.descricaoJustificativa = props.descricaoJustificativa;
}
}
exports.default = Feedback;
//# sourceMappingURL=Feedback.js.map