GoogleCloudIntegrationsV1alphaChangeCustomerConfigResponse.fromJson constructor

GoogleCloudIntegrationsV1alphaChangeCustomerConfigResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudIntegrationsV1alphaChangeCustomerConfigResponse.fromJson(
  core.Map json_,
) : this(
      customerConfig:
          json_.containsKey('customerConfig')
              ? GoogleCloudIntegrationsV1alphaCustomerConfig.fromJson(
                json_['customerConfig']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );