GoogleCloudAiplatformV1Event.fromJson constructor
GoogleCloudAiplatformV1Event.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1Event.fromJson(core.Map json_)
: this(
artifact: json_.containsKey('artifact')
? json_['artifact'] as core.String
: null,
eventTime: json_.containsKey('eventTime')
? json_['eventTime'] as core.String
: null,
execution: json_.containsKey('execution')
? json_['execution'] as core.String
: null,
labels: json_.containsKey('labels')
? (json_['labels'] as core.Map<core.String, core.dynamic>).map(
(key, value) => core.MapEntry(
key,
value as core.String,
),
)
: null,
type: json_.containsKey('type') ? json_['type'] as core.String : null,
);