class Google::Apis::AnalyticsreportingV4::Report

The data response corresponding to the request.

Attributes

column_header[RW]

Column headers. Corresponds to the JSON property `columnHeader` @return [Google::Apis::AnalyticsreportingV4::ColumnHeader]

data[RW]

The data part of the report. Corresponds to the JSON property `data` @return [Google::Apis::AnalyticsreportingV4::ReportData]

next_page_token[RW]

Page token to retrieve the next page of results in the list. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/analyticsreporting_v4/classes.rb, line 1167
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/analyticsreporting_v4/classes.rb, line 1172
def update!(**args)
  @column_header = args[:column_header] if args.key?(:column_header)
  @data = args[:data] if args.key?(:data)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end