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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/jobs_v3p1beta1/classes.rb,
generated/google/apis/jobs_v3p1beta1/representations.rb,
generated/google/apis/jobs_v3p1beta1/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



2857
2858
2859
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 2857

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

Instance Attribute Details

#end_timeString

End of the period. Corresponds to the JSON property endTime

Returns:

  • (String)


2850
2851
2852
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 2850

def end_time
  @end_time
end

#start_timeString

Begin of the period. Corresponds to the JSON property startTime

Returns:

  • (String)


2855
2856
2857
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 2855

def start_time
  @start_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2862
2863
2864
2865
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 2862

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