Show / Hide Table of Contents

Class McfData.RowsData

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.

Inheritance
System.Object
McfData.RowsData
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Analytics.v3.Data
Assembly: Google.Apis.Analytics.v3.dll
Syntax
public class RowsData

Properties

ConversionPathValue

A conversion path dimension value, containing a list of interactions with their attributes.

Declaration
[JsonProperty("conversionPathValue")]
public virtual IList<McfData.RowsData.ConversionPathValueData> ConversionPathValue { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<McfData.RowsData.ConversionPathValueData>

PrimitiveValue

A primitive dimension value. A primitive metric value.

Declaration
[JsonProperty("primitiveValue")]
public virtual string PrimitiveValue { get; set; }
Property Value
Type Description
System.String
In This Article
Back to top