Show / Hide Table of Contents

Class SortClause

The information about the sort object.

Inheritance
object
SortClause
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 SortClause

Properties

Field

Declaration
[JsonProperty(PropertyName = "field")]
public ShapeField Field { get; set; }
Property Value
Type Description
ShapeField

Order

Declaration
[JsonProperty(PropertyName = "order")]
[JsonConverter(typeof(ResponseEnumConverter))]
public SortClause.OrderEnum? Order { get; set; }
Property Value
Type Description
SortClause.OrderEnum?

The sort order.

In this article
Back to top