| Contact | Donate | Imprint |
| ShoppingCartItem | OfferModule | AmazonCom |
| Property | Type | Entity | Reference | Module |
| (1) AddedAt | DATE | ShoppingCartItem | ||
| (2) Offer | LONG | ShoppingCartItem | Offer | OfferModule |
| (3) Quantity | LONG | ShoppingCartItem | ||
| (4) ShoppingCart | LONG | ShoppingCartItem | ShoppingCart | OfferModule |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /shoppingcartitem/{id} | deleteShoppingCartItemById(id) | OfferModule | DELETE | ShoppingCartItem |
| (2) /shoppingcartitem/{id} | findShoppingCartItemById(id) | OfferModule | GET | ShoppingCartItem |
| (3) /shoppingcartitem/shoppingcart/{id} | findAllShoppingCartItemOfShoppingCart(id) | OfferModule | GET | ShoppingCart ShoppingCartItem |
| (4) /shoppingcartitem | insertShoppingCartItem(shoppingcartitem) | OfferModule | POST | ShoppingCartItem |
| (5) /shoppingcartitem/offer/{id} | findAllShoppingCartItemOfOffer(id) | OfferModule | GET | Offer ShoppingCartItem |
| (6) /shoppingcartitem/{id} | updateShoppingCartItemById(shoppingcartitem) | OfferModule | PUT | ShoppingCartItem |
| (7) /shoppingcartitem | findAllShoppingCartItem() | OfferModule | GET | ShoppingCartItem |
Example:
final ShoppingCartItem shoppingcartitem = (ShoppingCartItem) invokeModule(OFFER_MODULE + "/shoppingcartitem/" + id, ShoppingCartItem.class);| Contact | Donate | Imprint |