FieldValue

Description

The FieldValue type holds generic identification information for a field value. The FieldValue parameters are listed below.

Parameters

Name Type Description
displayValue string The display name of the field value.
internalValue string The internal database name for the field value.
uuid string Alternate unique identifier for the field value.

Usage

FieldValue is used in combination with the Field argument to completely describe a field value pairing in FieldWithValue. For more information, see FieldWithValue.

XML

The following XML shows FieldValue in the <urn:value> element of the extendedField argument.

<urn:extendedField>
    <urn:id>
        <urn:displayName>SINGLE SELECTION</urn:displayName>
        <urn:id></urn:id>
        <urn:uuid></urn:uuid>
        <urn:dbName>SINGLE_SELECTION</urn:dbName>
    </urn:id>
    <urn:setValueBy>PRECEDENCE-VALUE</urn:setValueBy>
    <urn:setValueMethod></urn:setValueMethod>
    <urn:value>
        <urn:displayValue>yellow</urn:displayValue>
        <urn:internalValue>77</urn:internalValue>
        <urn:uuid>2d16b39d-1be9-44a0-805c-1f9074c8ac35</urn:uuid>
    </urn:value>
</urn:extendedField>