toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final allowCancellation = this.allowCancellation;
final automatedAgentReplyType = this.automatedAgentReplyType;
final cxCurrentPage = this.cxCurrentPage;
final detectIntentResponse = this.detectIntentResponse;
return {
'allowCancellation': ?allowCancellation,
'automatedAgentReplyType': ?automatedAgentReplyType,
'cxCurrentPage': ?cxCurrentPage,
'detectIntentResponse': ?detectIntentResponse,
};
}