Represents data in custom table - custom entity data stored in a separate table This DTO is used for unitary table updates
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 | 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" : "..." } }