Class: Google::Apis::JobsV3::TimestampRange
- Inherits:
-
Object
- Object
- Google::Apis::JobsV3::TimestampRange
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/jobs_v3/classes.rb,
generated/google/apis/jobs_v3/representations.rb,
generated/google/apis/jobs_v3/representations.rb
Overview
Message representing a period of time between two timestamps.
Instance Attribute Summary collapse
-
#end_time ⇒ String
End of the period.
-
#start_time ⇒ String
Begin of the period.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TimestampRange
constructor
A new instance of TimestampRange.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TimestampRange
Returns a new instance of TimestampRange
2652 2653 2654 |
# File 'generated/google/apis/jobs_v3/classes.rb', line 2652 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_time ⇒ String
End of the period.
Corresponds to the JSON property endTime
2645 2646 2647 |
# File 'generated/google/apis/jobs_v3/classes.rb', line 2645 def end_time @end_time end |
#start_time ⇒ String
Begin of the period.
Corresponds to the JSON property startTime
2650 2651 2652 |
# File 'generated/google/apis/jobs_v3/classes.rb', line 2650 def start_time @start_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2657 2658 2659 2660 |
# File 'generated/google/apis/jobs_v3/classes.rb', line 2657 def update!(**args) @end_time = args[:end_time] if args.key?(:end_time) @start_time = args[:start_time] if args.key?(:start_time) end |