Class OrderBy
Order bys define how rows will be sorted in the response. For example, ordering rows by descending event count is one ordering, and ordering rows by the event name string is a different ordering.
Implements
Inherited Members
Namespace: Google.Apis.AnalyticsData.v1beta.Data
Assembly: Google.Apis.AnalyticsData.v1beta.dll
Syntax
public class OrderBy : IDirectResponseSchema
Properties
Desc
If true, sorts by descending order.
Declaration
[JsonProperty("desc")]
public virtual bool? Desc { get; set; }
Property Value
Type | Description |
---|---|
bool? |
Dimension
Sorts results by a dimension's values.
Declaration
[JsonProperty("dimension")]
public virtual DimensionOrderBy Dimension { get; set; }
Property Value
Type | Description |
---|---|
DimensionOrderBy |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Metric
Sorts results by a metric's values.
Declaration
[JsonProperty("metric")]
public virtual MetricOrderBy Metric { get; set; }
Property Value
Type | Description |
---|---|
MetricOrderBy |
Pivot
Sorts results by a metric's values within a pivot column group.
Declaration
[JsonProperty("pivot")]
public virtual PivotOrderBy Pivot { get; set; }
Property Value
Type | Description |
---|---|
PivotOrderBy |