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