A destination that a group trip requests to travel to.
| name | data type | constraints | description |
|---|---|---|---|
| locationName | string | The name of the destination location. | |
| locationAddress1 | string | The first line of the destination address. | |
| locationPhone | string | The phone number of the destination. | |
| arrivalTime | string | The planned arrival time at the destination. | |
| transport | string | required | |
| cityName | string | The name of the city the location is nearest to. | |
| zip | string | The zip code that the location resides in. | |
| departureTime | string | The planned departure time at the destination. | |
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
{
"locationName" : "...",
"locationAddress1" : "...",
"locationPhone" : "...",
"arrivalTime" : "...",
"transport" : "...",
"cityName" : "...",
"zip" : "...",
"departureTime" : "...",
"id" : 12345,
"version" : 12345,
"violations" : [ {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
}, {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
} ]
}