class Google::Apis::ApigeeV1::GoogleCloudApigeeV1RateRange
API call volume range and the fees charged when the total number of API calls is within the range.
Attributes
end[RW]
Ending value of the range. Set to 0 or `null` for the last range of values. Corresponds to the JSON property `end` @return [Fixnum]
fee[RW]
Represents an amount of money with its currency type. Corresponds to the JSON property `fee` @return [Google::Apis::ApigeeV1::GoogleTypeMoney]
start[RW]
Starting value of the range. Set to 0 or `null` for the initial range of values. Corresponds to the JSON property `start` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 5726 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/apigee_v1/classes.rb, line 5731 def update!(**args) @end = args[:end] if args.key?(:end) @fee = args[:fee] if args.key?(:fee) @start = args[:start] if args.key?(:start) end