Class: Google::Apis::JobsV4::TimestampRange
- Inherits:
-
Object
- Object
- Google::Apis::JobsV4::TimestampRange
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/jobs_v4/classes.rb,
lib/google/apis/jobs_v4/representations.rb,
lib/google/apis/jobs_v4/representations.rb
Overview
Message representing a period of time between two timestamps.
Instance Attribute Summary collapse
-
#end_time ⇒ String
End of the period (exclusive).
-
#start_time ⇒ String
Begin of the period (inclusive).
Instance Method Summary collapse
-
#initialize(**args) ⇒ TimestampRange
constructor
A new instance of TimestampRange.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TimestampRange
Returns a new instance of TimestampRange.
2577 2578 2579 |
# File 'lib/google/apis/jobs_v4/classes.rb', line 2577 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_time ⇒ String
End of the period (exclusive).
Corresponds to the JSON property endTime
2570 2571 2572 |
# File 'lib/google/apis/jobs_v4/classes.rb', line 2570 def end_time @end_time end |
#start_time ⇒ String
Begin of the period (inclusive).
Corresponds to the JSON property startTime
2575 2576 2577 |
# File 'lib/google/apis/jobs_v4/classes.rb', line 2575 def start_time @start_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2582 2583 2584 2585 |
# File 'lib/google/apis/jobs_v4/classes.rb', line 2582 def update!(**args) @end_time = args[:end_time] if args.key?(:end_time) @start_time = args[:start_time] if args.key?(:start_time) end |