Show / Hide Table of Contents

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.

Inheritance
object
OrderBy
Implements
IMessage<OrderBy>
IEquatable<OrderBy>
IDeepCloneable<OrderBy>
IBufferMessage
IMessage
Inherited Members
object.GetHashCode()
object.GetType()
object.ToString()
Namespace: Google.Analytics.Data.V1Beta
Assembly: Google.Analytics.Data.V1Beta.dll
Syntax
public sealed class OrderBy : IMessage<OrderBy>, IEquatable<OrderBy>, IDeepCloneable<OrderBy>, IBufferMessage, IMessage

Constructors

OrderBy()

Declaration
public OrderBy()

OrderBy(OrderBy)

Declaration
public OrderBy(OrderBy other)
Parameters
Type Name Description
OrderBy other

Properties

Desc

If true, sorts by descending order.

Declaration
public bool Desc { get; set; }
Property Value
Type Description
bool

Dimension

Sorts results by a dimension's values.

Declaration
public OrderBy.Types.DimensionOrderBy Dimension { get; set; }
Property Value
Type Description
OrderBy.Types.DimensionOrderBy

Metric

Sorts results by a metric's values.

Declaration
public OrderBy.Types.MetricOrderBy Metric { get; set; }
Property Value
Type Description
OrderBy.Types.MetricOrderBy

OneOrderByCase

Declaration
public OrderBy.OneOrderByOneofCase OneOrderByCase { get; }
Property Value
Type Description
OrderBy.OneOrderByOneofCase

Pivot

Sorts results by a metric's values within a pivot column group.

Declaration
public OrderBy.Types.PivotOrderBy Pivot { get; set; }
Property Value
Type Description
OrderBy.Types.PivotOrderBy
In this article
Back to top Generated by DocFX