CustomTableDataDto Data Type

Represents data in custom table - custom entity data stored in a separate table

Implemented Interfaces
Serializable
Properties
name data type description
customTableCode string Custom table/custom entity template code
overwrite boolean Should data be overwritten (deleted all data first) instead of appended to existing values. Defaults to false if omitted.
record array of CustomTableRecordDto A list of values with field name as map's key and field value as map's value

Example

{
  "customTableCode" : "...",
  "overwrite" : true,
  "record" : [ {
    "id" : 12345,
    "values" : {
      "property1" : { },
      "property2" : { }
    },
    "tableName" : "...",
    "display" : "..."
  }, {
    "id" : 12345,
    "values" : {
      "property1" : { },
      "property2" : { }
    },
    "tableName" : "...",
    "display" : "..."
  } ]
}