GoogleCloudIntegrationsV1alphaListCertificatesResponse.fromJson constructor

GoogleCloudIntegrationsV1alphaListCertificatesResponse.fromJson(
  1. Map json_
)

Implementation

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