GoogleCloudIntegrationsV1alphaUseTemplateResponse.fromJson constructor

GoogleCloudIntegrationsV1alphaUseTemplateResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudIntegrationsV1alphaUseTemplateResponse.fromJson(core.Map json_)
    : this(
        integrationVersion: json_.containsKey('integrationVersion')
            ? GoogleCloudIntegrationsV1alphaIntegrationVersion.fromJson(
                json_['integrationVersion']
                    as core.Map<core.String, core.dynamic>)
            : null,
        subIntegrationVersions:
            (json_['subIntegrationVersions'] as core.List?)
                ?.map((value) =>
                    GoogleCloudIntegrationsV1alphaIntegrationVersion.fromJson(
                        value as core.Map<core.String, core.dynamic>))
                .toList(),
      );