Class: Google::Apis::JobsV3p1beta1::TimestampRange
- Inherits:
-
Object
- Object
- Google::Apis::JobsV3p1beta1::TimestampRange
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/jobs_v3p1beta1/classes.rb,
lib/google/apis/jobs_v3p1beta1/representations.rb,
lib/google/apis/jobs_v3p1beta1/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.
Constructor Details
#initialize(**args) ⇒ TimestampRange
Returns a new instance of TimestampRange.
2711 2712 2713 |
# File 'lib/google/apis/jobs_v3p1beta1/classes.rb', line 2711 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_time ⇒ String
End of the period.
Corresponds to the JSON property endTime
2704 2705 2706 |
# File 'lib/google/apis/jobs_v3p1beta1/classes.rb', line 2704 def end_time @end_time end |
#start_time ⇒ String
Begin of the period.
Corresponds to the JSON property startTime
2709 2710 2711 |
# File 'lib/google/apis/jobs_v3p1beta1/classes.rb', line 2709 def start_time @start_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2716 2717 2718 2719 |
# File 'lib/google/apis/jobs_v3p1beta1/classes.rb', line 2716 def update!(**args) @end_time = args[:end_time] if args.key?(:end_time) @start_time = args[:start_time] if args.key?(:start_time) end |