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.



3100
3101
3102
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 3100

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

Instance Attribute Details

#end_timeString

End of the period. Corresponds to the JSON property endTime

Returns:

  • (String)


3093
3094
3095
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 3093

def end_time
  @end_time
end

#start_timeString

Begin of the period. Corresponds to the JSON property startTime

Returns:

  • (String)


3098
3099
3100
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 3098

def start_time
  @start_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3105
3106
3107
3108
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 3105

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