toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final answerGenerationRewriterOn = this.answerGenerationRewriterOn;
  final endUserMetadataIncluded = this.endUserMetadataIncluded;
  final thirdPartyConnectorAllowed = this.thirdPartyConnectorAllowed;
  return {
    'answerGenerationRewriterOn': ?answerGenerationRewriterOn,
    'endUserMetadataIncluded': ?endUserMetadataIncluded,
    'thirdPartyConnectorAllowed': ?thirdPartyConnectorAllowed,
  };
}