Class: Google::Apis::AnalyticsreportingV4::Report
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsreportingV4::Report
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/analyticsreporting_v4/classes.rb,
generated/google/apis/analyticsreporting_v4/representations.rb,
generated/google/apis/analyticsreporting_v4/representations.rb
Overview
The data response corresponding to the request.
Instance Attribute Summary collapse
-
#column_header ⇒ Google::Apis::AnalyticsreportingV4::ColumnHeader
Column headers.
-
#data ⇒ Google::Apis::AnalyticsreportingV4::ReportData
The data part of the report.
-
#next_page_token ⇒ String
Page token to retrieve the next page of results in the list.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Report
constructor
A new instance of Report.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Report
Returns a new instance of Report
791 792 793 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 791 def initialize(**args) update!(**args) end |
Instance Attribute Details
#column_header ⇒ Google::Apis::AnalyticsreportingV4::ColumnHeader
Column headers.
Corresponds to the JSON property columnHeader
779 780 781 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 779 def column_header @column_header end |
#data ⇒ Google::Apis::AnalyticsreportingV4::ReportData
The data part of the report.
Corresponds to the JSON property data
784 785 786 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 784 def data @data end |
#next_page_token ⇒ String
Page token to retrieve the next page of results in the list.
Corresponds to the JSON property nextPageToken
789 790 791 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 789 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
796 797 798 799 800 |
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 796 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 |