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