customFieldValueDto Data Type

Represents a single CF simple value inside a more complex CF value (list, map, matrix).

Namespace
(Default)
Properties
name data type type namespace min/max occurs description
booleanValue boolean element 0/1 The value.
childEntityValue customEntityInstanceDto element 0/1 The value.
dateValue dateTime element 0/1 The value.
doubleValue double element 0/1 The value.
entityReferenceValue entityReferenceDto element 0/1 The value.
longValue long element 0/1 The value.
stringValue string element 0/1 The value.

Example

<CustomFieldValue>
  <dateValue>...</dateValue>
  <doubleValue>...</doubleValue>
  <longValue>...</longValue>
  <stringValue>...</stringValue>
  <entityReferenceValue classname="..." classnameCode="..." code="..."/>
  <childEntityValue cetCode="..." code="..." description="..." id="...">
    <customFields>
      <customField/>
      <inheritedCustomField/>
    </customFields>
    <disabled>...</disabled>
    <auditable/>
    <auditableFields>
      <auditableField/>
    </auditableFields>
    <updatedCode>...</updatedCode>
  </childEntityValue>
  <booleanValue>...</booleanValue>
</CustomFieldValue>