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



2125
2126
2127
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2125

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)


2117
2118
2119
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2117

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)


2123
2124
2125
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2123

def start_time
  @start_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2130
2131
2132
2133
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2130

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