Show / Hide Table of Contents

Class Report.CrossDimensionReachCriteriaData

The report criteria for a report of type "CROSS_DIMENSION_REACH".

Inheritance
System.Object
Report.CrossDimensionReachCriteriaData
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_3.Data
Assembly: Google.Apis.Dfareporting.v3_3.dll
Syntax
public class CrossDimensionReachCriteriaData

Properties

Breakdown

The list of dimensions the report should include.

Declaration
[JsonProperty("breakdown")]
public virtual IList<SortedDimension> Breakdown { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<SortedDimension>

DateRange

The date range this report should be run for.

Declaration
[JsonProperty("dateRange")]
public virtual DateRange DateRange { get; set; }
Property Value
Type Description
DateRange

Dimension

The dimension option.

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

DimensionFilters

The list of filters on which dimensions are filtered.

Declaration
[JsonProperty("dimensionFilters")]
public virtual IList<DimensionValue> DimensionFilters { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<DimensionValue>

MetricNames

The list of names of metrics the report should include.

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

OverlapMetricNames

The list of names of overlap metrics the report should include.

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

Pivoted

Whether the report is pivoted or not. Defaults to true.

Declaration
[JsonProperty("pivoted")]
public virtual bool? Pivoted { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>
In This Article
Back to top