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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/adexchangebuyer2_v2beta1/classes.rb,
generated/google/apis/adexchangebuyer2_v2beta1/representations.rb,
generated/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

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ TimeInterval

Returns a new instance of TimeInterval.



3991
3992
3993
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 3991

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)


3983
3984
3985
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 3983

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)


3989
3990
3991
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 3989

def start_time
  @start_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3996
3997
3998
3999
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 3996

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