| Services | Contact | Donate | About | Imprint |
| BookingSegment | BookingModule | Airlines |
| Property | Type | Entity | Reference | Module |
| (1) Booking | LONG | BookingSegment | Booking | BookingModule |
| (2) CheckinStatus | STRING | BookingSegment | ||
| (3) FareClass | LONG | BookingSegment | FareClass | BookingModule |
| (4) FlightInstance | LONG | BookingSegment | FlightInstance | FlightInstanceModule |
| (5) SeatNumber | STRING | BookingSegment | ||
| (6) SegmentStatus | STRING | BookingSegment |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /bookingsegment | findAllBookingSegment() | BookingModule | GET | BookingSegment |
| (2) /bookingsegment/{id} | updateBookingSegmentById(bookingsegment) | BookingModule | PUT | BookingSegment |
| (3) /bookingsegment/fareclass/{id} | findAllBookingSegmentOfFareClass(id) | BookingModule | GET | FareClass BookingSegment |
| (4) /bookingsegment | insertBookingSegment(bookingsegment) | BookingModule | POST | BookingSegment |
| (5) /bookingsegment/flightinstance/{id} | findAllBookingSegmentOfFlightInstance(id) | BookingModule | GET | FlightInstance BookingSegment |
| (6) /bookingsegment/{id} | deleteBookingSegmentById(id) | BookingModule | DELETE | BookingSegment |
| (7) /bookingsegment/{id} | findBookingSegmentById(id) | BookingModule | GET | BookingSegment |
| (8) /bookingsegment/booking/{id} | findAllBookingSegmentOfBooking(id) | BookingModule | GET | Booking BookingSegment |
Example:
final BookingSegment bookingsegment = (BookingSegment) invokeModule(BOOKING_MODULE + "/bookingsegment/" + id, BookingSegment.class);| Services | Contact | Donate | About | Imprint |