The details on the available options per each udid. Created by nick on 9/15/15.
| name | data type | constraints | description |
|---|---|---|---|
| datatype | number | The type of data allowed to be entered. | |
| minimum | number | The minimum length. | |
| name | string | The name of the udid. | |
| value | string | The value of the udid. | |
| number | number | The number of the udid. | |
| maximum | number | The maximum length of the entry. | |
| options | array of DisplayOption | Get the available options for this udid. | |
| refresh | boolean | required boolean | Whether or not all UDID details should be refreshed if populated. You can use this flag to determine if validations should be refreshed if this UDID is modified. |
Properties inherited from BaseEntity |
|||
| violations | array of SimpleViolation | A list of constraint violations, if any, that this object has. | |
Example
{
"datatype" : 12345,
"minimum" : 12345,
"name" : "...",
"value" : "...",
"number" : 12345,
"maximum" : 12345,
"options" : [ {
"name" : "...",
"value" : "...",
"position" : 12345
}, {
"name" : "...",
"value" : "...",
"position" : 12345
} ],
"refresh" : true,
"violations" : [ {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
}, {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
} ]
}