Class SortingCapability
Describes sorting support for an insight type.
Inherited Members
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