| Contact | Donate | Imprint |
| GiftRedemption | GiftVoucherModule | ZeppelinFlight |
| Property | Type | Entity | Reference | Module |
| (1) AmountApplied | STRING | GiftRedemption | ||
| (2) Booking | INT | GiftRedemption | Booking | CustomerModule |
| (3) Currency | STRING | GiftRedemption | ||
| (4) GiftVoucher | INT | GiftRedemption | GiftVoucher | GiftVoucherModule |
| (5) RedemptionDate | DATE | GiftRedemption |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /giftredemption | findAllGiftRedemption() | GiftVoucherModule | GET | GiftRedemption |
| (2) /giftredemption/{id} | deleteGiftRedemptionById(id) | GiftVoucherModule | DELETE | GiftRedemption |
| (3) /giftredemption/{id} | updateGiftRedemptionById(giftredemption) | GiftVoucherModule | PUT | GiftRedemption |
| (4) /giftredemption/booking/{id} | findAllGiftRedemptionOfBooking(id) | GiftVoucherModule | GET | Booking GiftRedemption |
| (5) /giftredemption | insertGiftRedemption(giftredemption) | GiftVoucherModule | POST | GiftRedemption |
| (6) /giftredemption/{id} | findGiftRedemptionById(id) | GiftVoucherModule | GET | GiftRedemption |
| (7) /giftredemption/giftvoucher/{id} | findAllGiftRedemptionOfGiftVoucher(id) | GiftVoucherModule | GET | GiftVoucher GiftRedemption |
Example:
final GiftRedemption giftredemption = (GiftRedemption) invokeModule(GIFT_VOUCHER_MODULE + "/giftredemption/" + id, GiftRedemption.class);| Contact | Donate | Imprint |