GoogleCloudIntegrationsV1alphaListIntegrationVersionsResponse.fromJson constructor

GoogleCloudIntegrationsV1alphaListIntegrationVersionsResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudIntegrationsV1alphaListIntegrationVersionsResponse.fromJson(
  core.Map json_,
) : this(
      integrationVersions: (json_['integrationVersions'] as core.List?)
          ?.map(
            (value) =>
                GoogleCloudIntegrationsV1alphaIntegrationVersion.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
          )
          .toList(),
      nextPageToken: json_['nextPageToken'] as core.String?,
      noPermission: json_['noPermission'] as core.bool?,
    );