toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final deidentifyTemplate = this.deidentifyTemplate;
  final imageRedactTemplate = this.imageRedactTemplate;
  final structuredDeidentifyTemplate = this.structuredDeidentifyTemplate;
  return {
    'deidentifyTemplate': ?deidentifyTemplate,
    'imageRedactTemplate': ?imageRedactTemplate,
    'structuredDeidentifyTemplate': ?structuredDeidentifyTemplate,
  };
}