GoogleCloudAiplatformV1ListFeatureViewSyncsResponse.fromJson constructor
GoogleCloudAiplatformV1ListFeatureViewSyncsResponse.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1ListFeatureViewSyncsResponse.fromJson(core.Map json_)
: this(
featureViewSyncs: json_.containsKey('featureViewSyncs')
? (json_['featureViewSyncs'] as core.List)
.map((value) =>
GoogleCloudAiplatformV1FeatureViewSync.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
nextPageToken: json_.containsKey('nextPageToken')
? json_['nextPageToken'] as core.String
: null,
);