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