Show / Hide Table of Contents

Class SortingDefault

Default sorting behavior for an insight type.

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

Properties

Field

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

Default field used for sorting.

Order

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

Default sort order.

In this article
Back to top