GoogleCloudDatalabelingV1p1alpha1OutputConfig.fromJson constructor
GoogleCloudDatalabelingV1p1alpha1OutputConfig.fromJson(
- Map _json
Implementation
GoogleCloudDatalabelingV1p1alpha1OutputConfig.fromJson(core.Map _json)
: this(
gcsDestination: _json.containsKey('gcsDestination')
? GoogleCloudDatalabelingV1p1alpha1GcsDestination.fromJson(
_json['gcsDestination']
as core.Map<core.String, core.dynamic>)
: null,
gcsFolderDestination: _json.containsKey('gcsFolderDestination')
? GoogleCloudDatalabelingV1p1alpha1GcsFolderDestination.fromJson(
_json['gcsFolderDestination']
as core.Map<core.String, core.dynamic>)
: null,
);