toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final audioExportSettings = this.audioExportSettings;
final deidentifyTemplate = this.deidentifyTemplate;
final displayName = this.displayName;
final insightsExportSettings = this.insightsExportSettings;
final inspectTemplate = this.inspectTemplate;
final name = this.name;
final purgeDataTypes = this.purgeDataTypes;
final redactionScope = this.redactionScope;
final redactionStrategy = this.redactionStrategy;
final retentionStrategy = this.retentionStrategy;
final retentionWindowDays = this.retentionWindowDays;
return {
'audioExportSettings': ?audioExportSettings,
'deidentifyTemplate': ?deidentifyTemplate,
'displayName': ?displayName,
'insightsExportSettings': ?insightsExportSettings,
'inspectTemplate': ?inspectTemplate,
'name': ?name,
'purgeDataTypes': ?purgeDataTypes,
'redactionScope': ?redactionScope,
'redactionStrategy': ?redactionStrategy,
'retentionStrategy': ?retentionStrategy,
'retentionWindowDays': ?retentionWindowDays,
};
}