BillingRateTieredRate.fromJson constructor

BillingRateTieredRate.fromJson(
  1. Map json_
)

Implementation

BillingRateTieredRate.fromJson(core.Map json_)
    : this(
        highValue: json_.containsKey('highValue')
            ? json_['highValue'] as core.String
            : null,
        lowValue: json_.containsKey('lowValue')
            ? json_['lowValue'] as core.String
            : null,
        rateInMicros: json_.containsKey('rateInMicros')
            ? json_['rateInMicros'] as core.String
            : null,
      );