GoogleCloudHealthcareV1DicomBigQueryDestination.fromJson constructor

GoogleCloudHealthcareV1DicomBigQueryDestination.fromJson(
  1. Map json_
)

Implementation

GoogleCloudHealthcareV1DicomBigQueryDestination.fromJson(core.Map json_)
  : this(
      force: json_['force'] as core.bool?,
      includeSourceStore: json_['includeSourceStore'] as core.bool?,
      schemaFlattened: json_.containsKey('schemaFlattened')
          ? SchemaFlattened.fromJson(
              json_['schemaFlattened'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      schemaJson: json_.containsKey('schemaJson')
          ? SchemaJSON.fromJson(
              json_['schemaJson'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      tableUri: json_['tableUri'] as core.String?,
      writeDisposition: json_['writeDisposition'] as core.String?,
    );