GoogleCloudAiplatformV1IngestionDirectContentsSourceEvent.fromJson constructor
GoogleCloudAiplatformV1IngestionDirectContentsSourceEvent.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1IngestionDirectContentsSourceEvent.fromJson(
core.Map json_,
) : this(
content: json_.containsKey('content')
? GoogleCloudAiplatformV1Content.fromJson(
json_['content'] as core.Map<core.String, core.dynamic>,
)
: null,
eventId: json_['eventId'] as core.String?,
eventTime: json_['eventTime'] as core.String?,
);