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 Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<BillingAccount>createBillingAccount(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, 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 BillingAccount billingAccount) -
deleteBillingAccount
-
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)
-