Interface DeliveryModeApi

All Known Implementing Classes:
TmaDeliveryModeApiController

public interface DeliveryModeApi
Interface handling operations for DeliveryMode.
Since:
2302
  • Method Summary

    Modifier and Type
    Method
    Description
    org.springframework.http.ResponseEntity<List<DeliveryMode>>
    listDeliveryMode(@NotNull @Valid String shoppingCartId, @NotNull @Valid String relatedPartyId, @Valid String baseSiteId, @Valid String fields, @Valid String name, @Valid String description)
     
  • Method Details

    • listDeliveryMode

      @RequestMapping(value="/deliveryMode", produces="application/json;charset=utf-8", method=GET) org.springframework.http.ResponseEntity<List<DeliveryMode>> listDeliveryMode(@NotNull @Valid @RequestParam(value="shoppingCart.id",required=true) @NotNull @Valid String shoppingCartId, @NotNull @Valid @RequestParam(value="relatedParty.id",required=true) @NotNull @Valid String relatedPartyId, @Valid @RequestParam(value="baseSiteId",required=false) @Valid String baseSiteId, @Valid @RequestParam(value="fields",required=false) @Valid String fields, @Valid @RequestParam(value="name",required=false) @Valid String name, @Valid @RequestParam(value="description",required=false) @Valid String description)