Class: Google::Apis::DisplayvideoV2::TimeRange
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV2::TimeRange
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/displayvideo_v2/classes.rb,
lib/google/apis/displayvideo_v2/representations.rb,
lib/google/apis/displayvideo_v2/representations.rb
Overview
A time range.
Instance Attribute Summary collapse
-
#end_time ⇒ String
Required.
-
#start_time ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TimeRange
constructor
A new instance of TimeRange.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TimeRange
Returns a new instance of TimeRange.
10580 10581 10582 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 10580 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_time ⇒ String
Required. The upper bound of a time range, inclusive.
Corresponds to the JSON property endTime
10573 10574 10575 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 10573 def end_time @end_time end |
#start_time ⇒ String
Required. The lower bound of a time range, inclusive.
Corresponds to the JSON property startTime
10578 10579 10580 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 10578 def start_time @start_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10585 10586 10587 10588 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 10585 def update!(**args) @end_time = args[:end_time] if args.key?(:end_time) @start_time = args[:start_time] if args.key?(:start_time) end |