Interface CustomerBillOnDemandApi
- All Known Implementing Classes:
BmCustomerBillOnDemandController
public interface CustomerBillOnDemandApi
Interface handling operations for
CustomerBillOnDemand.- Since:
- 2302
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<CustomerBillOnDemand>createCustomerBillOnDemand(@Valid CustomerBillOnDemand body) org.springframework.http.ResponseEntity<List<CustomerBillOnDemand>>listCustomerBillOnDemand(@Valid String fields, @Valid Integer offset, @Valid Integer limit, @Valid String relatedPartyId) org.springframework.http.ResponseEntity<CustomerBillOnDemand>retrieveCustomerBillOnDemand(String id, @Valid String fields)
-
Method Details
-
createCustomerBillOnDemand
@RequestMapping(value="/customerBillOnDemand", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=POST) org.springframework.http.ResponseEntity<CustomerBillOnDemand> createCustomerBillOnDemand(@Valid @RequestBody @Valid CustomerBillOnDemand body) -
listCustomerBillOnDemand
@RequestMapping(value="/customerBillOnDemand", produces="application/json;charset=utf-8", method=GET) org.springframework.http.ResponseEntity<List<CustomerBillOnDemand>> listCustomerBillOnDemand(@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) -
retrieveCustomerBillOnDemand
@RequestMapping(value="/customerBillOnDemand/{id}", produces="application/json;charset=utf-8", method=GET) org.springframework.http.ResponseEntity<CustomerBillOnDemand> retrieveCustomerBillOnDemand(@PathVariable("id") String id, @Valid @RequestParam(value="fields",required=false) @Valid String fields)
-