Show / Hide Table of Contents

Class McfData.RowsData

A union object representing a dimension or metric value. Only one of "primitiveValue" or "conversionPathValue" attribute will be populated.

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
Back to top