Class: Google::Apis::JobsV2::BucketRange
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::JobsV2::BucketRange
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/jobs_v2/classes.rb,
 generated/google/apis/jobs_v2/representations.rb,
 generated/google/apis/jobs_v2/representations.rb
Overview
Represents starting and ending value of a range in double.
Instance Attribute Summary collapse
- 
  
    
      #from  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Starting value of the bucket range. 
- 
  
    
      #to  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Ending value of the bucket range. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ BucketRange 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of BucketRange. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ BucketRange
Returns a new instance of BucketRange
| 65 66 67 | # File 'generated/google/apis/jobs_v2/classes.rb', line 65 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#from ⇒ Float
Starting value of the bucket range.
Corresponds to the JSON property from
| 58 59 60 | # File 'generated/google/apis/jobs_v2/classes.rb', line 58 def from @from end | 
#to ⇒ Float
Ending value of the bucket range.
Corresponds to the JSON property to
| 63 64 65 | # File 'generated/google/apis/jobs_v2/classes.rb', line 63 def to @to end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 70 71 72 73 | # File 'generated/google/apis/jobs_v2/classes.rb', line 70 def update!(**args) @from = args[:from] if args.key?(:from) @to = args[:to] if args.key?(:to) end |