Interface BillFormatApi
- All Known Implementing Classes:
BaBillFormatController
public interface BillFormatApi
Interface handling operations for
BillFormat.- Since:
- 2302
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<BillFormat>createBillFormat(@Valid BillFormat billFormat) org.springframework.http.ResponseEntity<Void>org.springframework.http.ResponseEntity<List<BillFormat>>listBillFormat(@Valid String fields, @Valid Integer offset, @Valid Integer limit) org.springframework.http.ResponseEntity<BillFormat>patchBillFormat(String id, @Valid BillFormat billFormat) org.springframework.http.ResponseEntity<BillFormat>retrieveBillFormat(String id, @Valid String fields)
-
Method Details
-
listBillFormat
@RequestMapping(value="/billFormat", produces="application/json;charset=utf-8", method=GET) org.springframework.http.ResponseEntity<List<BillFormat>> listBillFormat(@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) -
createBillFormat
@RequestMapping(value="/billFormat", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=POST) org.springframework.http.ResponseEntity<BillFormat> createBillFormat(@Valid @RequestBody @Valid BillFormat billFormat) -
patchBillFormat
@RequestMapping(value="/billFormat/{id}", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=PATCH) org.springframework.http.ResponseEntity<BillFormat> patchBillFormat(@PathVariable("id") String id, @Valid @RequestBody @Valid BillFormat billFormat) -
deleteBillFormat
-
retrieveBillFormat
@RequestMapping(value="/billFormat/{id}", produces="application/json;charset=utf-8", method=GET) org.springframework.http.ResponseEntity<BillFormat> retrieveBillFormat(@PathVariable("id") String id, @Valid @RequestParam(value="fields",required=false) @Valid String fields)
-