ExportDicomDataRequest.fromJson constructor

ExportDicomDataRequest.fromJson(
  1. Map json_
)

Implementation

ExportDicomDataRequest.fromJson(core.Map json_)
    : this(
        bigqueryDestination: json_.containsKey('bigqueryDestination')
            ? GoogleCloudHealthcareV1DicomBigQueryDestination.fromJson(
                json_['bigqueryDestination']
                    as core.Map<core.String, core.dynamic>)
            : null,
        gcsDestination: json_.containsKey('gcsDestination')
            ? GoogleCloudHealthcareV1DicomGcsDestination.fromJson(
                json_['gcsDestination']
                    as core.Map<core.String, core.dynamic>)
            : null,
      );