Class: Google::Apis::RetailV2::GoogleCloudRetailV2ConditionTimeRange
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::RetailV2::GoogleCloudRetailV2ConditionTimeRange
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/retail_v2/classes.rb,
 lib/google/apis/retail_v2/representations.rb,
 lib/google/apis/retail_v2/representations.rb
Overview
Used for time-dependent conditions. Example: Want to have rule applied for week long sale.
Instance Attribute Summary collapse
- 
  
    
      #end_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    End of time range. 
- 
  
    
      #start_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Start of time range. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudRetailV2ConditionTimeRange 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GoogleCloudRetailV2ConditionTimeRange. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ GoogleCloudRetailV2ConditionTimeRange
Returns a new instance of GoogleCloudRetailV2ConditionTimeRange.
| 1390 1391 1392 | # File 'lib/google/apis/retail_v2/classes.rb', line 1390 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#end_time ⇒ String
End of time range. Range is inclusive.
Corresponds to the JSON property endTime
| 1383 1384 1385 | # File 'lib/google/apis/retail_v2/classes.rb', line 1383 def end_time @end_time end | 
#start_time ⇒ String
Start of time range. Range is inclusive.
Corresponds to the JSON property startTime
| 1388 1389 1390 | # File 'lib/google/apis/retail_v2/classes.rb', line 1388 def start_time @start_time end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1395 1396 1397 1398 | # File 'lib/google/apis/retail_v2/classes.rb', line 1395 def update!(**args) @end_time = args[:end_time] if args.key?(:end_time) @start_time = args[:start_time] if args.key?(:start_time) end |