class Google::Apis::AdexchangesellerV2_0::Report
Attributes
The averages of the report. This is the same length as any other row in the report; cells corresponding to dimension columns are empty. Corresponds to the JSON property `averages` @return [Array<String>]
The header information of the columns requested in the report. This is a list of headers; one for each dimension in the request, followed by one for each metric in the request. Corresponds to the JSON property `headers` @return [Array<Google::Apis::AdexchangesellerV2_0::Report::Header>]
Kind this is, in this case adexchangeseller#report. Corresponds to the JSON property `kind` @return [String]
The output rows of the report. Each row is a list of cells; one for each dimension in the request, followed by one for each metric in the request. The dimension cells contain strings, and the metric cells contain numbers. Corresponds to the JSON property `rows` @return [Array<Array<String>>]
The total number of rows matched by the report request. Fewer rows may be returned in the response due to being limited by the row count requested or the report row limit. Corresponds to the JSON property `totalMatchedRows` @return [String]
The totals of the report. This is the same length as any other row in the report; cells corresponding to dimension columns are empty. Corresponds to the JSON property `totals` @return [Array<String>]
Any warnings associated with generation of the report. Corresponds to the JSON property `warnings` @return [Array<String>]
Public Class Methods
# File generated/google/apis/adexchangeseller_v2_0/classes.rb, line 536 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/adexchangeseller_v2_0/classes.rb, line 541 def update!(**args) @averages = args[:averages] if args.key?(:averages) @headers = args[:headers] if args.key?(:headers) @kind = args[:kind] if args.key?(:kind) @rows = args[:rows] if args.key?(:rows) @total_matched_rows = args[:total_matched_rows] if args.key?(:total_matched_rows) @totals = args[:totals] if args.key?(:totals) @warnings = args[:warnings] if args.key?(:warnings) end