GoogleCloudAiplatformV1Annotation.fromJson constructor
GoogleCloudAiplatformV1Annotation.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1Annotation.fromJson(core.Map json_)
: this(
annotationSource: json_.containsKey('annotationSource')
? GoogleCloudAiplatformV1UserActionReference.fromJson(
json_['annotationSource']
as core.Map<core.String, core.dynamic>)
: null,
createTime: json_['createTime'] as core.String?,
etag: json_['etag'] as core.String?,
labels:
(json_['labels'] as core.Map<core.String, core.dynamic>?)?.map(
(key, value) => core.MapEntry(
key,
value as core.String,
),
),
name: json_['name'] as core.String?,
payload: json_['payload'],
payloadSchemaUri: json_['payloadSchemaUri'] as core.String?,
updateTime: json_['updateTime'] as core.String?,
);