GoogleCloudDatacatalogV1DatabaseTableSpec.fromJson constructor
GoogleCloudDatacatalogV1DatabaseTableSpec.fromJson(
- Map json_
Implementation
GoogleCloudDatacatalogV1DatabaseTableSpec.fromJson(core.Map json_)
: this(
databaseViewSpec: json_.containsKey('databaseViewSpec')
? GoogleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpec
.fromJson(json_['databaseViewSpec']
as core.Map<core.String, core.dynamic>)
: null,
dataplexTable: json_.containsKey('dataplexTable')
? GoogleCloudDatacatalogV1DataplexTableSpec.fromJson(
json_['dataplexTable'] as core.Map<core.String, core.dynamic>)
: null,
type: json_.containsKey('type') ? json_['type'] as core.String : null,
);