class Google::Apis::AnalyticsV3::Columns

Lists columns (dimensions and metrics) for a particular report type.

Attributes

attribute_names[RW]

List of attributes names returned by columns. Corresponds to the JSON property `attributeNames` @return [Array<String>]

etag[RW]

Etag of collection. This etag can be compared with the last response etag to check if response has changed. Corresponds to the JSON property `etag` @return [String]

items[RW]

List of columns for a report type. Corresponds to the JSON property `items` @return [Array<Google::Apis::AnalyticsV3::Column>]

kind[RW]

Collection type. Corresponds to the JSON property `kind` @return [String]

total_results[RW]

Total number of columns returned in the response. Corresponds to the JSON property `totalResults` @return [Fixnum]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/analytics_v3/classes.rb, line 618
def update!(**args)
  @attribute_names = args[:attribute_names] if args.key?(:attribute_names)
  @etag = args[:etag] if args.key?(:etag)
  @items = args[:items] if args.key?(:items)
  @kind = args[:kind] if args.key?(:kind)
  @total_results = args[:total_results] if args.key?(:total_results)
end