Interface BillingAccountApi
- All Known Implementing Classes:
BaBillingAccountController
public interface BillingAccountApi
Interface handling operations for
BillingAccount.- Since:
- 2302
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<BillingAccount>createBillingAccount(@Valid BillingAccount billingAccount) org.springframework.http.ResponseEntity<Void>org.springframework.http.ResponseEntity<List<BillingAccount>>listBillingAccount(@Valid String fields, @Valid Integer offset, @Valid Integer limit, @Valid String paymentStatus) org.springframework.http.ResponseEntity<BillingAccount>patchBillingAccount(String id, @Valid BillingAccount billingAccount) org.springframework.http.ResponseEntity<BillingAccount>retrieveBillingAccount(String id, @Valid String fields)
-
Method Details
-
createBillingAccount
@RequestMapping(value="/billingAccount", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=POST) org.springframework.http.ResponseEntity<BillingAccount> createBillingAccount(@Valid @RequestBody @Valid BillingAccount billingAccount) -
deleteBillingAccount
-
listBillingAccount
@RequestMapping(value="/billingAccount", produces="application/json;charset=utf-8", method=GET) org.springframework.http.ResponseEntity<List<BillingAccount>> listBillingAccount(@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="paymentStatus",required=false) @Valid String paymentStatus) -
patchBillingAccount
@RequestMapping(value="/billingAccount/{id}", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=PATCH) org.springframework.http.ResponseEntity<BillingAccount> patchBillingAccount(@PathVariable("id") String id, @Valid @RequestBody @Valid BillingAccount billingAccount) -
retrieveBillingAccount
@RequestMapping(value="/billingAccount/{id}", produces="application/json;charset=utf-8", method=GET) org.springframework.http.ResponseEntity<BillingAccount> retrieveBillingAccount(@PathVariable("id") String id, @Valid @RequestParam(value="fields",required=false) @Valid String fields)
-