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