Show / Hide Table of Contents

Class SortingCapability

Describes sorting support for an insight type.

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

Properties

DefaultSort

Declaration
[JsonProperty(PropertyName = "defaultSort")]
public SortingDefault DefaultSort { get; set; }
Property Value
Type Description
SortingDefault

Fields

Declaration
[JsonProperty(PropertyName = "fields")]
public List<string> Fields { get; set; }
Property Value
Type Description
List<string>

Fields that can be used for sorting.

IsSupported

Declaration
[Required(ErrorMessage = "IsSupported is required.")]
[JsonProperty(PropertyName = "isSupported")]
public bool? IsSupported { get; set; }
Property Value
Type Description
bool?

Indicates whether sorting is supported.

Remarks

Required

In this article
Back to top