GoogleCloudAiplatformV1FeatureValueDestination.fromJson constructor
GoogleCloudAiplatformV1FeatureValueDestination.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1FeatureValueDestination.fromJson(core.Map json_)
: this(
bigqueryDestination: json_.containsKey('bigqueryDestination')
? GoogleCloudAiplatformV1BigQueryDestination.fromJson(
json_['bigqueryDestination']
as core.Map<core.String, core.dynamic>)
: null,
csvDestination: json_.containsKey('csvDestination')
? GoogleCloudAiplatformV1CsvDestination.fromJson(
json_['csvDestination']
as core.Map<core.String, core.dynamic>)
: null,
tfrecordDestination: json_.containsKey('tfrecordDestination')
? GoogleCloudAiplatformV1TFRecordDestination.fromJson(
json_['tfrecordDestination']
as core.Map<core.String, core.dynamic>)
: null,
);