Class: Google::Apis::Adexchangebuyer2V2beta1::TimeInterval

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

Overview

An interval of time, with an absolute start and end.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TimeInterval

Returns a new instance of TimeInterval.



3964
3965
3966
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 3964

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

Instance Attribute Details

#end_timeString

The timestamp marking the end of the range (exclusive) for which data is included. Corresponds to the JSON property endTime

Returns:

  • (String)


3956
3957
3958
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 3956

def end_time
  @end_time
end

#start_timeString

The timestamp marking the start of the range (inclusive) for which data is included. Corresponds to the JSON property startTime

Returns:

  • (String)


3962
3963
3964
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 3962

def start_time
  @start_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3969
3970
3971
3972
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 3969

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