Interface AppliedCustomerBillingRateApi
- All Known Implementing Classes:
BmAppliedCustomerBillingRateController
public interface AppliedCustomerBillingRateApi
Interface handling operations for
AppliedCustomerBillingRate.- Since:
- 2302
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<List<AppliedCustomerBillingRate>>listAppliedCustomerBillingRate(@Valid String fields, @Valid Integer offset, @Valid Integer limit, @Valid String relatedPartyId) org.springframework.http.ResponseEntity<AppliedCustomerBillingRate>retrieveAppliedCustomerBillingRate(String id, @Valid String fields)
-
Method Details
-
listAppliedCustomerBillingRate
@RequestMapping(value="/appliedCustomerBillingRate", produces="application/json;charset=utf-8", method=GET) org.springframework.http.ResponseEntity<List<AppliedCustomerBillingRate>> listAppliedCustomerBillingRate(@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) -
retrieveAppliedCustomerBillingRate
@RequestMapping(value="/appliedCustomerBillingRate/{id}", produces="application/json;charset=utf-8", method=GET) org.springframework.http.ResponseEntity<AppliedCustomerBillingRate> retrieveAppliedCustomerBillingRate(@PathVariable("id") String id, @Valid @RequestParam(value="fields",required=false) @Valid String fields)
-