Column

class oci.data_safe.models.Column(**kwargs)

Bases: object

The description of the column.

Methods

__init__(**kwargs) Initializes a new Column object with values from keyword arguments.

Attributes

data_type Gets the data_type of this Column.
display_name [Required] Gets the display_name of this Column.
display_order [Required] Gets the display_order of this Column.
field_name [Required] Gets the field_name of this Column.
is_hidden [Required] Gets the is_hidden of this Column.
__init__(**kwargs)

Initializes a new Column object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • display_name (str) – The value to assign to the display_name property of this Column.
  • field_name (str) – The value to assign to the field_name property of this Column.
  • data_type (str) – The value to assign to the data_type property of this Column.
  • is_hidden (bool) – The value to assign to the is_hidden property of this Column.
  • display_order (int) – The value to assign to the display_order property of this Column.
data_type

Gets the data_type of this Column. Specifies the data type of the column.

Returns:The data_type of this Column.
Return type:str
display_name

[Required] Gets the display_name of this Column. Name of the column displayed on UI.

Returns:The display_name of this Column.
Return type:str
display_order

[Required] Gets the display_order of this Column. Specifies the display order of the column.

Returns:The display_order of this Column.
Return type:int
field_name

[Required] Gets the field_name of this Column. Specifies the corresponding field name in the data source.

Returns:The field_name of this Column.
Return type:str
is_hidden

[Required] Gets the is_hidden of this Column. Indicates if the column is hidden. Values can either be ‘true’ or ‘false’.

Returns:The is_hidden of this Column.
Return type:bool