Class: Google::Apis::Adexchangebuyer2V2beta1::RowDimensions
- Inherits:
-
Object
- Object
- Google::Apis::Adexchangebuyer2V2beta1::RowDimensions
- 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
A response may include multiple rows, breaking down along various dimensions. Encapsulates the values of all dimensions for a given row.
Instance Attribute Summary collapse
-
#publisher_identifier ⇒ String
The publisher identifier for this row, if a breakdown by BreakdownDimension.PUBLISHER_IDENTIFIER was requested.
-
#time_interval ⇒ Google::Apis::Adexchangebuyer2V2beta1::TimeInterval
An interval of time, with an absolute start and end.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RowDimensions
constructor
A new instance of RowDimensions.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ RowDimensions
Returns a new instance of RowDimensions
3727 3728 3729 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 3727 def initialize(**args) update!(**args) end |
Instance Attribute Details
#publisher_identifier ⇒ String
The publisher identifier for this row, if a breakdown by
BreakdownDimension.PUBLISHER_IDENTIFIER
was requested.
Corresponds to the JSON property publisherIdentifier
3720 3721 3722 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 3720 def publisher_identifier @publisher_identifier end |
#time_interval ⇒ Google::Apis::Adexchangebuyer2V2beta1::TimeInterval
An interval of time, with an absolute start and end.
Corresponds to the JSON property timeInterval
3725 3726 3727 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 3725 def time_interval @time_interval end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3732 3733 3734 3735 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 3732 def update!(**args) @publisher_identifier = args[:publisher_identifier] if args.key?(:publisher_identifier) @time_interval = args[:time_interval] if args.key?(:time_interval) end |