1 Table of Contents
2 Overview
The contacting setting holds a key value pair which can be used to store settings for a
Contacting.
3 Elements
| Name | Type | Datatype | Example | Default | Description |
|---|
| Key
| required
| string
| -
| -
| The setting key.
|
| Type
| required
| string
| System.String
| -
| The data type of the value.
|
| | System.String: Any String.
|
| | System.Int32: Integer number from -2,147,483,648 to 2,147,483,647.
|
| | System.DateTime: ISO 8601 date and time format.
|
| | System.Boolean: Boolean value. Possible values are "True" and "False".
|
| Value
| required
| string
| -
| -
| The value as a string representation.
|
3.1 Example
JSON:
{
"Key": "aKey",
"Type": "System.String",
"Value": "a value"
}
XML:
<ContactingSetting xmlns="http://delivergo.net/portal/api">
<Key>aKey</Key>
<Type>System.String</Type>
<Value>a value</Value>
</ContactingSetting>