CustomFieldValue

A value for a CustomField on a resource.

JSON representation
{
  "customField": string,
  "value": {
    object (Value)
  }
}
Fields
customField

string

Required. The custom field for which this is a value. Format: "networks/{networkCode}/customFields/{customFieldId}"

value

object (Value)

Required. A typed value representation of the value.

Value

Represent custom field value type.

JSON representation
{

  // Union field value can be only one of the following:
  "dropdownValue": string,
  "stringValue": string,
  "numberValue": number,
  "toggleValue": boolean
  // End of list of possible types for union field value.
}
Fields
Union field value. The value of this field. value can be only one of the following:
dropdownValue

string (int64 format)

The customFieldOptionId, if the CustomFieldDataType is DROPDOWN.

stringValue

string

The value, if the CustomFieldDataType is STRING.

numberValue

number

The value, if the CustomFieldDataType is NUMBER.

toggleValue

boolean

The value, if the CustomFieldDataType is TOGGLE.