BookingInfo Data Type

Info about how a trip might be booked at a particular stop. All of this is pass-through information, except information about booking time and booking notice. // TODO Make the routing take into account booking time and booking notice.

Implemented Interfaces
Serializable
Properties
name data type description
contactInfo ContactInfo
earliestBookingTime BookingTime
latestBookingTime BookingTime
minimumBookingNotice number
maximumBookingNotice number
message string
pickupMessage string
dropOffMessage string

Example

{
  "contactInfo" : {
    "contactPerson" : "...",
    "phoneNumber" : "...",
    "eMail" : "...",
    "faxNumber" : "...",
    "infoUrl" : "...",
    "bookingUrl" : "...",
    "additionalDetails" : "..."
  },
  "earliestBookingTime" : {
    "time" : 12345,
    "daysPrior" : 12345
  },
  "latestBookingTime" : {
    "time" : 12345,
    "daysPrior" : 12345
  },
  "minimumBookingNotice" : 12345,
  "maximumBookingNotice" : 12345,
  "message" : "...",
  "pickupMessage" : "...",
  "dropOffMessage" : "..."
}