class Google::Apis::AnalyticsdataV1beta::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::AnalyticsdataV1beta::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_v1beta/classes.rb, line 1272
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_v1beta/classes.rb, line 1277
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