ExportResourcesRequest.fromJson constructor

ExportResourcesRequest.fromJson(
  1. Map json_
)

Implementation

ExportResourcesRequest.fromJson(core.Map json_)
    : this(
        P_since: json_['_since'] as core.String?,
        P_type: json_['_type'] as core.String?,
        bigqueryDestination: json_.containsKey('bigqueryDestination')
            ? GoogleCloudHealthcareV1FhirBigQueryDestination.fromJson(
                json_['bigqueryDestination']
                    as core.Map<core.String, core.dynamic>)
            : null,
        gcsDestination: json_.containsKey('gcsDestination')
            ? GoogleCloudHealthcareV1FhirGcsDestination.fromJson(
                json_['gcsDestination']
                    as core.Map<core.String, core.dynamic>)
            : null,
      );