class Google::Apis::AnalyticsV3::McfData

Multi-Channel Funnels data for a given view (profile).

Attributes

column_headers[RW]

Column headers that list dimension names followed by the metric names. The order of dimensions and metrics is same as specified in the request. Corresponds to the JSON property `columnHeaders` @return [Array<Google::Apis::AnalyticsV3::McfData::ColumnHeader>]

contains_sampled_data[RW]

Determines if the Analytics data contains sampled data. Corresponds to the JSON property `containsSampledData` @return [Boolean]

contains_sampled_data?[RW]

Determines if the Analytics data contains sampled data. Corresponds to the JSON property `containsSampledData` @return [Boolean]

id[RW]

Unique ID for this data response. Corresponds to the JSON property `id` @return [String]

items_per_page[RW]

The maximum number of rows the response can contain, regardless of the actual number of rows returned. Its value ranges from 1 to 10,000 with a value of 1000 by default, or otherwise specified by the max-results query parameter. Corresponds to the JSON property `itemsPerPage` @return [Fixnum]

kind[RW]

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

profile_info[RW]

Information for the view (profile), for which the Analytics data was requested. Corresponds to the JSON property `profileInfo` @return [Google::Apis::AnalyticsV3::McfData::ProfileInfo]

query[RW]

Analytics data request query parameters. Corresponds to the JSON property `query` @return [Google::Apis::AnalyticsV3::McfData::Query]

rows[RW]

Analytics data rows, where each row contains a list of dimension values followed by the metric values. The order of dimensions and metrics is same as specified in the request. Corresponds to the JSON property `rows` @return [Array<Array<Google::Apis::AnalyticsV3::McfData::Row>>]

sample_size[RW]

The number of samples used to calculate the result. Corresponds to the JSON property `sampleSize` @return [Fixnum]

sample_space[RW]

Total size of the sample space from which the samples were selected. Corresponds to the JSON property `sampleSpace` @return [Fixnum]

total_results[RW]

The total number of rows for the query, regardless of the number of rows in the response. Corresponds to the JSON property `totalResults` @return [Fixnum]

totals_for_all_results[RW]

Total values for the requested metrics over all the results, not just the results returned in this response. The order of the metric totals is same as the metric order specified in the request. Corresponds to the JSON property `totalsForAllResults` @return [Hash<String,String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/analytics_v3/classes.rb, line 3574
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 3579
def update!(**args)
  @column_headers = args[:column_headers] if args.key?(:column_headers)
  @contains_sampled_data = args[:contains_sampled_data] if args.key?(:contains_sampled_data)
  @id = args[:id] if args.key?(:id)
  @items_per_page = args[:items_per_page] if args.key?(:items_per_page)
  @kind = args[:kind] if args.key?(:kind)
  @next_link = args[:next_link] if args.key?(:next_link)
  @previous_link = args[:previous_link] if args.key?(:previous_link)
  @profile_info = args[:profile_info] if args.key?(:profile_info)
  @query = args[:query] if args.key?(:query)
  @rows = args[:rows] if args.key?(:rows)
  @sample_size = args[:sample_size] if args.key?(:sample_size)
  @sample_space = args[:sample_space] if args.key?(:sample_space)
  @self_link = args[:self_link] if args.key?(:self_link)
  @total_results = args[:total_results] if args.key?(:total_results)
  @totals_for_all_results = args[:totals_for_all_results] if args.key?(:totals_for_all_results)
end