Show / Hide Table of Contents

Class SortKeyRule

A rule to define the set of fields to sort by, and whether to sort by ascending or descending values.

Inheritance
object
SortKeyRule
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DataintegrationService.Models
Assembly: OCI.DotNetSDK.Dataintegration.dll
Syntax
public class SortKeyRule

Properties

IsAscending

Declaration
[JsonProperty(PropertyName = "isAscending")]
public bool? IsAscending { get; set; }
Property Value
Type Description
bool?

Specifies if the sort key has ascending order.

WrappedRule

Declaration
[JsonProperty(PropertyName = "wrappedRule")]
public ProjectionRule WrappedRule { get; set; }
Property Value
Type Description
ProjectionRule
In this article
Back to top