GoogleCloudPaymentsResellerSubscriptionV1ProductPriceConfig.fromJson constructor
GoogleCloudPaymentsResellerSubscriptionV1ProductPriceConfig.fromJson(
- Map json_
Implementation
GoogleCloudPaymentsResellerSubscriptionV1ProductPriceConfig.fromJson(
core.Map json_)
: this(
amount: json_.containsKey('amount')
? GoogleCloudPaymentsResellerSubscriptionV1Amount.fromJson(
json_['amount'] as core.Map<core.String, core.dynamic>)
: null,
regionCode: json_.containsKey('regionCode')
? json_['regionCode'] as core.String
: null,
);