CustomFieldFormattedValueDto Data Type

The Class CustomFieldFormattedValueDto.

Properties
name data type description
singleValue string The long, double or date value.
id number The id.
listValue array of string The list value.
mapValue map of string The map value.
code string The code
auditable AuditableDto
auditableField array of AuditableFieldDto
description string The description
updatedCode string The updated code.

Example

{
  "singleValue" : "...",
  "id" : 12345,
  "listValue" : [ "...", "..." ],
  "mapValue" : {
    "property1" : "...",
    "property2" : "..."
  },
  "code" : "...",
  "auditable" : {
    "created" : 12345,
    "updated" : 12345,
    "creator" : "...",
    "updater" : "..."
  },
  "auditableField" : [ {
    "entityClass" : "...",
    "id" : 12345,
    "fieldName" : "...",
    "code" : "...",
    "changeOrigin" : "...",
    "auditable" : {
      "created" : 12345,
      "updated" : 12345,
      "creator" : "...",
      "updater" : "..."
    },
    "auditableField" : [ { }, { } ],
    "description" : "...",
    "originName" : "...",
    "updatedCode" : "...",
    "previousState" : "...",
    "currentState" : "...",
    "created" : "...",
    "actor" : "..."
  }, {
    "entityClass" : "...",
    "id" : 12345,
    "fieldName" : "...",
    "code" : "...",
    "changeOrigin" : "...",
    "auditable" : {
      "created" : 12345,
      "updated" : 12345,
      "creator" : "...",
      "updater" : "..."
    },
    "auditableField" : [ { }, { } ],
    "description" : "...",
    "originName" : "...",
    "updatedCode" : "...",
    "previousState" : "...",
    "currentState" : "...",
    "created" : "...",
    "actor" : "..."
  } ],
  "description" : "...",
  "updatedCode" : "..."
}