Class: Google::Apis::ContentV2_1::RepricingRuleEffectiveTimeFixedTimePeriod
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::RepricingRuleEffectiveTimeFixedTimePeriod
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/content_v2_1/classes.rb,
generated/google/apis/content_v2_1/representations.rb,
generated/google/apis/content_v2_1/representations.rb
Overview
Definition of a fixed time period.
Instance Attribute Summary collapse
-
#end_time ⇒ String
The end time (exclusive) of the period.
-
#start_time ⇒ String
The start time (inclusive) of the period.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RepricingRuleEffectiveTimeFixedTimePeriod
constructor
A new instance of RepricingRuleEffectiveTimeFixedTimePeriod.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RepricingRuleEffectiveTimeFixedTimePeriod
Returns a new instance of RepricingRuleEffectiveTimeFixedTimePeriod.
11184 11185 11186 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 11184 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_time ⇒ String
The end time (exclusive) of the period. It can only be hour granularity.
Corresponds to the JSON property endTime
11177 11178 11179 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 11177 def end_time @end_time end |
#start_time ⇒ String
The start time (inclusive) of the period. It can only be hour granularity.
Corresponds to the JSON property startTime
11182 11183 11184 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 11182 def start_time @start_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11189 11190 11191 11192 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 11189 def update!(**args) @end_time = args[:end_time] if args.key?(:end_time) @start_time = args[:start_time] if args.key?(:start_time) end |