Class Column
The description of the column.
Inherited Members
Namespace: Oci.DatasafeService.Models
Assembly: OCI.DotNetSDK.Datasafe.dll
Syntax
public class Column
Properties
ApplicableOperators
Declaration
[JsonProperty(PropertyName = "applicableOperators", ItemConverterType = typeof(ResponseEnumConverter))]
public List<Column.ApplicableOperatorsEnum> ApplicableOperators { get; set; }
Property Value
Type | Description |
---|---|
List<Column.ApplicableOperatorsEnum> | An array of operators that can be supported by column fieldName. |
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
IsVirtual
Declaration
[JsonProperty(PropertyName = "isVirtual")]
public bool? IsVirtual { get; set; }
Property Value
Type | Description |
---|---|
bool? | Specifies if column is virtual and can only be used as column filter. |