Show / Hide Table of Contents

Class PathReportDimensionValue

Represents a PathReportDimensionValue resource.

Inheritance
System.Object
PathReportDimensionValue
Implements
Google.Apis.Requests.IDirectResponseSchema
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.Dfareporting.v3_4.Data
Assembly: Google.Apis.Dfareporting.v3_4.dll
Syntax
public class PathReportDimensionValue : IDirectResponseSchema

Properties

DimensionName

The name of the dimension.

Declaration
[JsonProperty("dimensionName")]
public virtual string DimensionName { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Ids

The possible ID's associated with the value if available.

Declaration
[JsonProperty("ids")]
public virtual IList<string> Ids { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Kind

The kind of resource this is, in this case dfareporting#pathReportDimensionValue.

Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

MatchType

Determines how the 'value' field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, '' is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions ('dfa:paidSearch') allow a matchType other than EXACT.

Declaration
[JsonProperty("matchType")]
public virtual string MatchType { get; set; }
Property Value
Type Description
System.String

Values

The possible values of the dimension.

Declaration
[JsonProperty("values")]
public virtual IList<string> Values { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top