toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final conversationFilter = this.conversationFilter;
  final feedbackLabelType = this.feedbackLabelType;
  final filter = this.filter;
  final gcsDestination = this.gcsDestination;
  final maxDownloadCount = this.maxDownloadCount;
  final parent = this.parent;
  final sheetsDestination = this.sheetsDestination;
  final templateQaScorecardId = this.templateQaScorecardId;
  return {
    'conversationFilter': ?conversationFilter,
    'feedbackLabelType': ?feedbackLabelType,
    'filter': ?filter,
    'gcsDestination': ?gcsDestination,
    'maxDownloadCount': ?maxDownloadCount,
    'parent': ?parent,
    'sheetsDestination': ?sheetsDestination,
    'templateQaScorecardId': ?templateQaScorecardId,
  };
}