Class: Google::Apis::ChatV1::TimeInput
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ChatV1::TimeInput
 
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/chat_v1/classes.rb,
 lib/google/apis/chat_v1/representations.rb,
 lib/google/apis/chat_v1/representations.rb
Overview
Time input values.
Instance Attribute Summary collapse
- 
  
    
      #hours  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The hour on a 24-hour clock. 
- 
  
    
      #minutes  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The number of minutes past the hour. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ TimeInput 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of TimeInput. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ TimeInput
Returns a new instance of TimeInput.
| 5296 5297 5298 | # File 'lib/google/apis/chat_v1/classes.rb', line 5296 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#hours ⇒ Fixnum
The hour on a 24-hour clock.
Corresponds to the JSON property hours
| 5289 5290 5291 | # File 'lib/google/apis/chat_v1/classes.rb', line 5289 def hours @hours end | 
#minutes ⇒ Fixnum
The number of minutes past the hour. Valid values are 0 to 59.
Corresponds to the JSON property minutes
| 5294 5295 5296 | # File 'lib/google/apis/chat_v1/classes.rb', line 5294 def minutes @minutes end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 5301 5302 5303 5304 | # File 'lib/google/apis/chat_v1/classes.rb', line 5301 def update!(**args) @hours = args[:hours] if args.key?(:hours) @minutes = args[:minutes] if args.key?(:minutes) end |