GoogleCloudAiplatformV1ExportDataConfig.fromJson constructor
GoogleCloudAiplatformV1ExportDataConfig.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1ExportDataConfig.fromJson(core.Map json_)
: this(
annotationsFilter: json_.containsKey('annotationsFilter')
? json_['annotationsFilter'] as core.String
: null,
fractionSplit: json_.containsKey('fractionSplit')
? GoogleCloudAiplatformV1ExportFractionSplit.fromJson(
json_['fractionSplit'] as core.Map<core.String, core.dynamic>)
: null,
gcsDestination: json_.containsKey('gcsDestination')
? GoogleCloudAiplatformV1GcsDestination.fromJson(
json_['gcsDestination']
as core.Map<core.String, core.dynamic>)
: null,
);