Interface CustomerBillApi
- All Known Implementing Classes:
BmCustomerBillController
@Generated(value="de.hybris.platform.billmanagementtmfwebservices.swagger.BillManagementCodegen",
date="2022-12-09T12:10:42.417922+02:00[Europe/Bucharest]")
@Validated
public interface CustomerBillApi
Interface handling operations for
CustomerBill.- Since:
- 2302
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<List<CustomerBill>>listCustomerBill(@Valid String fields, @Valid Integer offset, @Valid Integer limit, @Valid String relatedPartyId) org.springframework.http.ResponseEntity<CustomerBill>retrieveCustomerBill(String id, @Valid String fields)
-
Method Details
-
listCustomerBill
@RequestMapping(value="/customerBill", produces="application/json;charset=utf-8", method=GET) org.springframework.http.ResponseEntity<List<CustomerBill>> listCustomerBill(@Valid @RequestParam(value="fields",required=false) @Valid String fields, @Valid @RequestParam(value="offset",required=false) @Valid Integer offset, @Valid @RequestParam(value="limit",required=false) @Valid Integer limit, @Valid @RequestParam(value="relatedParty.id",required=false) @Valid String relatedPartyId) -
retrieveCustomerBill
@RequestMapping(value="/customerBill/{id}", produces="application/json;charset=utf-8", method=GET) org.springframework.http.ResponseEntity<CustomerBill> retrieveCustomerBill(@PathVariable("id") String id, @Valid @RequestParam(value="fields",required=false) @Valid String fields)
-