A car rate code is the time interval of when the rate amount should be charged.
| name | data type | description |
|---|---|---|
| code | string | The code retrieved from the GDS. |
| description | string | A short description about what the code means. |
| multiplier | number | The multiplier value that we multiply the time scale with to get the approximate total. Time scale is in hours. |
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
{
"code" : "...",
"description" : "...",
"multiplier" : 12345.0,
"id" : 12345,
"version" : 12345,
"violations" : [ {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
}, {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
} ]
}