Class: Google::Apis::AnalyticsdataV1alpha::RunReportResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/analyticsdata_v1alpha/classes.rb,
lib/google/apis/analyticsdata_v1alpha/representations.rb,
lib/google/apis/analyticsdata_v1alpha/representations.rb

Overview

The response report table corresponding to a request.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RunReportResponse

Returns a new instance of RunReportResponse.



1787
1788
1789
# File 'lib/google/apis/analyticsdata_v1alpha/classes.rb', line 1787

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#dimension_headersArray<Google::Apis::AnalyticsdataV1alpha::DimensionHeader>

Describes dimension columns. The number of DimensionHeaders and ordering of DimensionHeaders matches the dimensions present in rows. Corresponds to the JSON property dimensionHeaders



1737
1738
1739
# File 'lib/google/apis/analyticsdata_v1alpha/classes.rb', line 1737

def dimension_headers
  @dimension_headers
end

#maximumsArray<Google::Apis::AnalyticsdataV1alpha::Row>

If requested, the maximum values of metrics. Corresponds to the JSON property maximums



1742
1743
1744
# File 'lib/google/apis/analyticsdata_v1alpha/classes.rb', line 1742

def maximums
  @maximums
end

#metadataGoogle::Apis::AnalyticsdataV1alpha::ResponseMetaData

Response's metadata carrying additional information about the report content. Corresponds to the JSON property metadata



1747
1748
1749
# File 'lib/google/apis/analyticsdata_v1alpha/classes.rb', line 1747

def 
  @metadata
end

#metric_headersArray<Google::Apis::AnalyticsdataV1alpha::MetricHeader>

Describes metric columns. The number of MetricHeaders and ordering of MetricHeaders matches the metrics present in rows. Corresponds to the JSON property metricHeaders



1753
1754
1755
# File 'lib/google/apis/analyticsdata_v1alpha/classes.rb', line 1753

def metric_headers
  @metric_headers
end

#minimumsArray<Google::Apis::AnalyticsdataV1alpha::Row>

If requested, the minimum values of metrics. Corresponds to the JSON property minimums



1758
1759
1760
# File 'lib/google/apis/analyticsdata_v1alpha/classes.rb', line 1758

def minimums
  @minimums
end

#property_quotaGoogle::Apis::AnalyticsdataV1alpha::PropertyQuota

Current state of all quotas for this Analytics Property. If any quota for a property is exhausted, all requests to that property will return Resource Exhausted errors. Corresponds to the JSON property propertyQuota



1765
1766
1767
# File 'lib/google/apis/analyticsdata_v1alpha/classes.rb', line 1765

def property_quota
  @property_quota
end

#row_countFixnum

The total number of rows in the query result, regardless of the number of rows returned in the response. For example if a query returns 175 rows and includes limit = 50 in the API request, the response will contain row_count = 175 but only 50 rows. To learn more about this pagination parameter, see Pagination. Corresponds to the JSON property rowCount

Returns:

  • (Fixnum)


1775
1776
1777
# File 'lib/google/apis/analyticsdata_v1alpha/classes.rb', line 1775

def row_count
  @row_count
end

#rowsArray<Google::Apis::AnalyticsdataV1alpha::Row>

Rows of dimension value combinations and metric values in the report. Corresponds to the JSON property rows



1780
1781
1782
# File 'lib/google/apis/analyticsdata_v1alpha/classes.rb', line 1780

def rows
  @rows
end

#totalsArray<Google::Apis::AnalyticsdataV1alpha::Row>

If requested, the totaled values of metrics. Corresponds to the JSON property totals



1785
1786
1787
# File 'lib/google/apis/analyticsdata_v1alpha/classes.rb', line 1785

def totals
  @totals
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
# File 'lib/google/apis/analyticsdata_v1alpha/classes.rb', line 1792

def update!(**args)
  @dimension_headers = args[:dimension_headers] if args.key?(:dimension_headers)
  @maximums = args[:maximums] if args.key?(:maximums)
  @metadata = args[:metadata] if args.key?(:metadata)
  @metric_headers = args[:metric_headers] if args.key?(:metric_headers)
  @minimums = args[:minimums] if args.key?(:minimums)
  @property_quota = args[:property_quota] if args.key?(:property_quota)
  @row_count = args[:row_count] if args.key?(:row_count)
  @rows = args[:rows] if args.key?(:rows)
  @totals = args[:totals] if args.key?(:totals)
end