Interface BillingAccountApi

All Known Implementing Classes:
BaBillingAccountController

public interface BillingAccountApi
Interface handling operations for BillingAccount.
Since:
2302
  • 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

      @RequestMapping(value="/billingAccount/{id}", produces="application/json;charset=utf-8", method=DELETE) org.springframework.http.ResponseEntity<Void> deleteBillingAccount(@PathVariable("id") String id)
    • 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)