ExportResourcesRequest.fromJson constructor
ExportResourcesRequest.fromJson(
- Map json_
Implementation
ExportResourcesRequest.fromJson(core.Map json_)
: this(
P_since: json_.containsKey('_since')
? json_['_since'] as core.String
: null,
P_type:
json_.containsKey('_type') ? json_['_type'] as core.String : null,
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,
);