Interface BillingCycleSpecificationApi
- All Known Implementing Classes:
BaBillingCycleSpecificationController
public interface BillingCycleSpecificationApi
Interface handling operations for
BillingCycleSpecification.- Since:
- 2302
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<BillingCycleSpecification>createBillingCycleSpecification(@Valid BillingCycleSpecification billingCycleSpecification) org.springframework.http.ResponseEntity<Void>org.springframework.http.ResponseEntity<List<BillingCycleSpecification>>listBillingCycleSpecification(@Valid String fields, @Valid Integer offset, @Valid Integer limit) org.springframework.http.ResponseEntity<BillingCycleSpecification>patchBillingCycleSpecification(String id, @Valid BillingCycleSpecification billingCycleSpecification) org.springframework.http.ResponseEntity<BillingCycleSpecification>retrieveBillingCycleSpecification(String id, @Valid String fields)
-
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
-