GoogleCloudIntegrationsV1alphaProjectProperties.fromJson constructor

GoogleCloudIntegrationsV1alphaProjectProperties.fromJson(
  1. Map json_
)

Implementation

GoogleCloudIntegrationsV1alphaProjectProperties.fromJson(core.Map json_)
    : this(
        billingType: json_.containsKey('billingType')
            ? json_['billingType'] as core.String
            : null,
        ipEnablementState: json_.containsKey('ipEnablementState')
            ? json_['ipEnablementState'] as core.String
            : null,
        provisionedRegions: json_.containsKey('provisionedRegions')
            ? (json_['provisionedRegions'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );