GoogleCloudApigeeV1RateRange.fromJson constructor

GoogleCloudApigeeV1RateRange.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1RateRange.fromJson(core.Map json_)
    : this(
        end: json_.containsKey('end') ? json_['end'] as core.String : null,
        fee: json_.containsKey('fee')
            ? GoogleTypeMoney.fromJson(
                json_['fee'] as core.Map<core.String, core.dynamic>)
            : null,
        start:
            json_.containsKey('start') ? json_['start'] as core.String : null,
      );