Class: Google::Apis::JobsV3::TimestampRange

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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ TimestampRange

Returns a new instance of TimestampRange.



2774
2775
2776
# File 'generated/google/apis/jobs_v3/classes.rb', line 2774

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

Instance Attribute Details

#end_timeString

End of the period. Corresponds to the JSON property endTime

Returns:

  • (String)


2767
2768
2769
# File 'generated/google/apis/jobs_v3/classes.rb', line 2767

def end_time
  @end_time
end

#start_timeString

Begin of the period. Corresponds to the JSON property startTime

Returns:

  • (String)


2772
2773
2774
# File 'generated/google/apis/jobs_v3/classes.rb', line 2772

def start_time
  @start_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2779
2780
2781
2782
# File 'generated/google/apis/jobs_v3/classes.rb', line 2779

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