class Google::Apis::JobsV3::BucketRange
Represents starting and ending value of a range in double.
Attributes
from[RW]
Starting value of the bucket range. Corresponds to the JSON property `from` @return [Float]
to[RW]
Ending value of the bucket range. Corresponds to the JSON property `to` @return [Float]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/jobs_v3/classes.rb, line 101 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/jobs_v3/classes.rb, line 106 def update!(**args) @from = args[:from] if args.key?(:from) @to = args[:to] if args.key?(:to) end