Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Method

Return Type

Description

id()

String

Retrieves the unique identifier of the master data table.

key()

String

Retrieves the key associated with the master data table.

title()

String

Retrieves the title of the master data table.

columns()

List<MasterDataColumn>

Retrieves a list of columns within the table.

rows()

List<MasterDataRow>

Retrieves a list of rows within the table.

created()

ChangeContextDto

Retrieves the creation context of the table.

modified()

ChangeContextDto

Retrieves the last modified context of the table.

getRowKeyColumnKey

String

Retrieves the key of the column that contains the row key value

Below is a table describing the methods available on the MasterDataColumn object, which represents a column within a master data table.

Method

Return Type

Description

key()

String

Retrieves the unique key identifier of the column.

title()

String

Retrieves the title or name of the column.

valueType()

PropertyDataType

Retrieves the data type of the column's values.

isRowKey()

boolean

information if this column contains the row key value

Here's a table that outlines the methods accessible on the MasterDataRow object, which encapsulates a row within a master data table.

...