GoogleCloudChannelV1RepricingAdjustment.fromJson constructor

GoogleCloudChannelV1RepricingAdjustment.fromJson(
  1. Map json_
)

Implementation

GoogleCloudChannelV1RepricingAdjustment.fromJson(core.Map json_)
    : this(
        percentageAdjustment: json_.containsKey('percentageAdjustment')
            ? GoogleCloudChannelV1PercentageAdjustment.fromJson(
                json_['percentageAdjustment']
                    as core.Map<core.String, core.dynamic>)
            : null,
      );