Describes different levels of class of service. This is good for defining levels of service without specifying every vendor. Created by nick on 2/26/15.
| name | data type | description |
|---|---|---|
| name | string | The name of the class level. |
| code | string | The BCD code for the class level. This will be comparable across vendors. |
| value | number | The value of this service level. Higher is better. |
Properties inherited from BaseHibernateEntity |
||
| id | number | The unique internal ID of the object. |
| version | number | For internal use only. This is the serialization recorder for optimistic locking of several objects between sessions. |
Properties inherited from BaseEntity |
||
| violations | array of SimpleViolation | A list of constraint violations, if any, that this object has. |
Example
{
"name" : "...",
"code" : "...",
"value" : 12345,
"id" : 12345,
"version" : 12345,
"violations" : [ {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
}, {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
} ]
}