Show / Hide Table of Contents

Class Column

The description of the column.

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

Properties

DataType

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

Specifies the data type of the column.

DisplayName

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

Name of the column displayed on UI.

Remarks

Required

DisplayOrder

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

Specifies the display order of the column.

Remarks

Required

FieldName

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

Specifies the corresponding field name in the data source.

Remarks

Required

IsHidden

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

Indicates if the column is hidden. Values can either be 'true' or 'false'.

Remarks

Required

In this article
Back to top