GoogleCloudDatalabelingV1beta1VideoClassificationConfig.fromJson constructor
GoogleCloudDatalabelingV1beta1VideoClassificationConfig.fromJson(
- Map json_
Implementation
GoogleCloudDatalabelingV1beta1VideoClassificationConfig.fromJson(
core.Map json_)
: this(
annotationSpecSetConfigs:
json_.containsKey('annotationSpecSetConfigs')
? (json_['annotationSpecSetConfigs'] as core.List)
.map((value) =>
GoogleCloudDatalabelingV1beta1AnnotationSpecSetConfig
.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
applyShotDetection: json_.containsKey('applyShotDetection')
? json_['applyShotDetection'] as core.bool
: null,
);