Class MetricFilter
MetricFilter specifies the filter on a metric.
Implements
Inherited Members
Namespace: Google.Apis.AnalyticsReporting.v4.Data
Assembly: Google.Apis.AnalyticsReporting.v4.dll
Syntax
public class MetricFilter : IDirectResponseSchema
Properties
ComparisonValue
The value to compare against.
Declaration
[JsonProperty("comparisonValue")]
public virtual string ComparisonValue { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
MetricName
The metric that will be filtered on. A metricFilter must contain a metric name. A metric name can be an alias earlier defined as a metric or it can also be a metric expression.
Declaration
[JsonProperty("metricName")]
public virtual string MetricName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Not
Logical NOT operator. If this boolean is set to true, then the matching metric values will be excluded in
the report. The default is false.
Declaration
[JsonProperty("not")]
public virtual bool? Not { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? |
Operator__
Is the metric EQUAL, LESS_THAN or GREATER_THAN the comparisonValue, the default is EQUAL. If the
operator is IS_MISSING, checks if the metric is missing and would ignore the comparisonValue.
Declaration
[JsonProperty("operator")]
public virtual string Operator__ { get; set; }
Property Value
| Type | Description |
|---|---|
| string |