Interface BillingCycleSpecificationApi

All Known Implementing Classes:
BaBillingCycleSpecificationController

public interface BillingCycleSpecificationApi
Interface handling operations for BillingCycleSpecification.
Since:
2302
  • Method Details

    • listBillingCycleSpecification

      @RequestMapping(value="/billingCycleSpecification", produces="application/json;charset=utf-8", method=GET) org.springframework.http.ResponseEntity<List<BillingCycleSpecification>> listBillingCycleSpecification(@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)
    • retrieveBillingCycleSpecification

      @RequestMapping(value="/billingCycleSpecification/{id}", produces="application/json;charset=utf-8", method=GET) org.springframework.http.ResponseEntity<BillingCycleSpecification> retrieveBillingCycleSpecification(@PathVariable("id") String id, @Valid @RequestParam(value="fields",required=false) @Valid String fields)
    • createBillingCycleSpecification

      @RequestMapping(value="/billingCycleSpecification", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=POST) org.springframework.http.ResponseEntity<BillingCycleSpecification> createBillingCycleSpecification(@Valid @RequestBody @Valid BillingCycleSpecification billingCycleSpecification)
    • patchBillingCycleSpecification

      @RequestMapping(value="/billingCycleSpecification/{id}", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=PATCH) org.springframework.http.ResponseEntity<BillingCycleSpecification> patchBillingCycleSpecification(@PathVariable("id") String id, @Valid @RequestBody @Valid BillingCycleSpecification billingCycleSpecification)
    • deleteBillingCycleSpecification

      @RequestMapping(value="/billingCycleSpecification/{id}", produces="application/json;charset=utf-8", method=DELETE) org.springframework.http.ResponseEntity<Void> deleteBillingCycleSpecification(@PathVariable("id") String id)