Class: Google::Apis::JobsV3p1beta1::TimestampRange

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TimestampRange

Returns a new instance of TimestampRange.



2866
2867
2868
# File 'lib/google/apis/jobs_v3p1beta1/classes.rb', line 2866

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#end_timeString

End of the period. Corresponds to the JSON property endTime

Returns:

  • (String)


2859
2860
2861
# File 'lib/google/apis/jobs_v3p1beta1/classes.rb', line 2859

def end_time
  @end_time
end

#start_timeString

Begin of the period. Corresponds to the JSON property startTime

Returns:

  • (String)


2864
2865
2866
# File 'lib/google/apis/jobs_v3p1beta1/classes.rb', line 2864

def start_time
  @start_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2871
2872
2873
2874
# File 'lib/google/apis/jobs_v3p1beta1/classes.rb', line 2871

def update!(**args)
  @end_time = args[:end_time] if args.key?(:end_time)
  @start_time = args[:start_time] if args.key?(:start_time)
end