GoogleCloudRetailV2BigQuerySource.fromJson constructor
GoogleCloudRetailV2BigQuerySource.fromJson(
- Map json_
Implementation
GoogleCloudRetailV2BigQuerySource.fromJson(core.Map json_)
: this(
dataSchema: json_.containsKey('dataSchema')
? json_['dataSchema'] as core.String
: null,
datasetId: json_.containsKey('datasetId')
? json_['datasetId'] as core.String
: null,
gcsStagingDir: json_.containsKey('gcsStagingDir')
? json_['gcsStagingDir'] as core.String
: null,
partitionDate: json_.containsKey('partitionDate')
? GoogleTypeDate.fromJson(
json_['partitionDate'] as core.Map<core.String, core.dynamic>)
: null,
projectId: json_.containsKey('projectId')
? json_['projectId'] as core.String
: null,
tableId: json_.containsKey('tableId')
? json_['tableId'] as core.String
: null,
);