Class: Google::Apis::JobsV4::TimestampRange

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/jobs_v4/classes.rb,
generated/google/apis/jobs_v4/representations.rb,
generated/google/apis/jobs_v4/representations.rb

Overview

Message representing a period of time between two timestamps.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TimestampRange

Returns a new instance of TimestampRange.



2687
2688
2689
# File 'generated/google/apis/jobs_v4/classes.rb', line 2687

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

Instance Attribute Details

#end_timeString

End of the period (exclusive). Corresponds to the JSON property endTime

Returns:

  • (String)


2680
2681
2682
# File 'generated/google/apis/jobs_v4/classes.rb', line 2680

def end_time
  @end_time
end

#start_timeString

Begin of the period (inclusive). Corresponds to the JSON property startTime

Returns:

  • (String)


2685
2686
2687
# File 'generated/google/apis/jobs_v4/classes.rb', line 2685

def start_time
  @start_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2692
2693
2694
2695
# File 'generated/google/apis/jobs_v4/classes.rb', line 2692

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