class Google::Apis::AnalyticsdataV1alpha::PivotHeader
Dimensions' values in a single pivot.
Attributes
pivot_dimension_headers[RW]
The size is the same as the cardinality of the corresponding dimension combinations. Corresponds to the JSON property `pivotDimensionHeaders` @return [Array<Google::Apis::AnalyticsdataV1alpha::PivotDimensionHeader>]
row_count[RW]
The cardinality of the pivot. The total number of rows for this pivot's fields regardless of how the parameters `offset` and `limit` are specified in the request. Corresponds to the JSON property `rowCount` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/analyticsdata_v1alpha/classes.rb, line 1111 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/analyticsdata_v1alpha/classes.rb, line 1116 def update!(**args) @pivot_dimension_headers = args[:pivot_dimension_headers] if args.key?(:pivot_dimension_headers) @row_count = args[:row_count] if args.key?(:row_count) end