Show / Hide Table of Contents

Class OrderBy

The sort options.

Inheritance
System.Object
OrderBy
Implements
Google.Protobuf.IMessage<OrderBy>
System.IEquatable<OrderBy>
Google.Protobuf.IDeepCloneable<OrderBy>
Google.Protobuf.IBufferMessage
Google.Protobuf.IMessage
Inherited Members
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.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
System.Boolean

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