Interface BillingAccountApi

All Known Implementing Classes:
BaBillingAccountController

@Generated(value="de.hybris.platform.billingaccounttmfwebservices.swagger.BaBillingAccountCodegen", date="2022-10-21T20:35:20.298Z") @Validated @RequestMapping("") public interface BillingAccountApi
  • 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 BillingAccount billingAccount)
    • deleteBillingAccount

      @RequestMapping(value="/billingAccount/{id}", produces="application/json;charset=utf-8", consumes="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", consumes="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 BillingAccount billingAccount)
    • retrieveBillingAccount

      @RequestMapping(value="/billingAccount/{id}", produces="application/json;charset=utf-8", consumes="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)