toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final agentAssistInputDataConfig = this.agentAssistInputDataConfig;
  final datasetInputDataConfig = this.datasetInputDataConfig;
  final endTime = this.endTime;
  final inputDataSourceType = this.inputDataSourceType;
  final isSummaryGenerationAllowed = this.isSummaryGenerationAllowed;
  final sampleSize = this.sampleSize;
  final startTime = this.startTime;
  final summaryGenerationOption = this.summaryGenerationOption;
  return {
    'agentAssistInputDataConfig': ?agentAssistInputDataConfig,
    'datasetInputDataConfig': ?datasetInputDataConfig,
    'endTime': ?endTime,
    'inputDataSourceType': ?inputDataSourceType,
    'isSummaryGenerationAllowed': ?isSummaryGenerationAllowed,
    'sampleSize': ?sampleSize,
    'startTime': ?startTime,
    'summaryGenerationOption': ?summaryGenerationOption,
  };
}