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



3045
3046
3047
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 3045

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

Instance Attribute Details

#end_timeString

End of the period. Corresponds to the JSON property endTime

Returns:

  • (String)


3038
3039
3040
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 3038

def end_time
  @end_time
end

#start_timeString

Begin of the period. Corresponds to the JSON property startTime

Returns:

  • (String)


3043
3044
3045
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 3043

def start_time
  @start_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3050
3051
3052
3053
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 3050

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