Class: Google::Apis::AdexchangebuyerV1_3::PerformanceReportList
- Inherits:
-
Object
- Object
- Google::Apis::AdexchangebuyerV1_3::PerformanceReportList
- Includes:
- Core::Hashable
- Defined in:
- generated/google/apis/adexchangebuyer_v1_3/classes.rb,
generated/google/apis/adexchangebuyer_v1_3/representations.rb,
generated/google/apis/adexchangebuyer_v1_3/representations.rb
Overview
The configuration data for an Ad Exchange performance report list. https:// sites.google.com/a/google.com/adx-integration/Home/engineering/binary-releases/ rtb-api-release https://cs.corp.google.com/#piper///depot/google3/contentads/ adx/tools/rtb_api/adxrtb.py
Instance Attribute Summary collapse
-
#kind ⇒ String
Resource type.
-
#performance_report ⇒ Array<Google::Apis::AdexchangebuyerV1_3::PerformanceReport>
A list of performance reports relevant for the account.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PerformanceReportList
constructor
A new instance of PerformanceReportList.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ PerformanceReportList
Returns a new instance of PerformanceReportList.
1053 1054 1055 |
# File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 1053 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
Resource type.
Corresponds to the JSON property kind
1046 1047 1048 |
# File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 1046 def kind @kind end |
#performance_report ⇒ Array<Google::Apis::AdexchangebuyerV1_3::PerformanceReport>
A list of performance reports relevant for the account.
Corresponds to the JSON property performanceReport
1051 1052 1053 |
# File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 1051 def performance_report @performance_report end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1058 1059 1060 1061 |
# File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 1058 def update!(**args) @kind = args[:kind] if args.key?(:kind) @performance_report = args[:performance_report] if args.key?(:performance_report) end |