Show / Hide Table of Contents

Class OrderBy.Types.PivotOrderBy

Sorts by a pivot column group.

Inheritance
System.Object
OrderBy.Types.PivotOrderBy
Implements
Google.Protobuf.IMessage<OrderBy.Types.PivotOrderBy>
System.IEquatable<OrderBy.Types.PivotOrderBy>
Google.Protobuf.IDeepCloneable<OrderBy.Types.PivotOrderBy>
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 PivotOrderBy : IMessage<OrderBy.Types.PivotOrderBy>, IEquatable<OrderBy.Types.PivotOrderBy>, IDeepCloneable<OrderBy.Types.PivotOrderBy>, IBufferMessage, IMessage

Constructors

PivotOrderBy()

Declaration
public PivotOrderBy()

PivotOrderBy(OrderBy.Types.PivotOrderBy)

Declaration
public PivotOrderBy(OrderBy.Types.PivotOrderBy other)
Parameters
Type Name Description
OrderBy.Types.PivotOrderBy other

Properties

MetricName

In the response to order by, order rows by this column. Must be a metric name from the request.

Declaration
public string MetricName { get; set; }
Property Value
Type Description
System.String

PivotSelections

Used to select a dimension name and value pivot. If multiple pivot selections are given, the sort occurs on rows where all pivot selection dimension name and value pairs match the row's dimension name and value pair.

Declaration
public RepeatedField<OrderBy.Types.PivotOrderBy.Types.PivotSelection> PivotSelections { get; }
Property Value
Type Description
Google.Protobuf.Collections.RepeatedField<OrderBy.Types.PivotOrderBy.Types.PivotSelection>
In This Article
Back to top