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



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

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

Instance Attribute Details

#end_timeString

End of the period. Corresponds to the JSON property endTime

Returns:

  • (String)


3032
3033
3034
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 3032

def end_time
  @end_time
end

#start_timeString

Begin of the period. Corresponds to the JSON property startTime

Returns:

  • (String)


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

def start_time
  @start_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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