GoogleCloudIntegrationsV1alphaChangeCustomerConfigResponse.fromJson constructor
GoogleCloudIntegrationsV1alphaChangeCustomerConfigResponse.fromJson(
- 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,
);