toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final agent = this.agent;
final environmentId = this.environmentId;
final flowId = this.flowId;
final inputVariableMapping = this.inputVariableMapping;
final languageCodeVariable = this.languageCodeVariable;
final outputVariableMapping = this.outputVariableMapping;
final respectResponseInterruptionSettings =
this.respectResponseInterruptionSettings;
return {
'agent': ?agent,
'environmentId': ?environmentId,
'flowId': ?flowId,
'inputVariableMapping': ?inputVariableMapping,
'languageCodeVariable': ?languageCodeVariable,
'outputVariableMapping': ?outputVariableMapping,
'respectResponseInterruptionSettings':
?respectResponseInterruptionSettings,
};
}