Show / Hide Table of Contents

Class ColumnSorting

Sorts the data at the column level.

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

Properties

FieldName

Declaration
[Required(ErrorMessage = "FieldName is required.")]
[JsonProperty(PropertyName = "fieldName")]
public string FieldName { get; set; }
Property Value
Type Description
string

Name of the column that must be sorted.

Remarks

Required

IsAscending

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

Indicates if the column must be sorted in ascending order. Values can either be 'true' or 'false'.

Remarks

Required

SortingOrder

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

Indicates the order at which column must be sorted.

Remarks

Required

In this article
Back to top