Interface BillPresentationMediaApi
- All Known Implementing Classes:
BaBillPresentationMediaController
public interface BillPresentationMediaApi
Interface handling operations for
BillPresentationMedia.- Since:
- 2302
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<BillPresentationMedia>createBillPresentationMedia(@Valid BillPresentationMedia billPresentationMedia) org.springframework.http.ResponseEntity<Void>org.springframework.http.ResponseEntity<List<BillPresentationMedia>>listBillPresentationMedia(@Valid String fields, @Valid Integer offset, @Valid Integer limit) org.springframework.http.ResponseEntity<BillPresentationMedia>patchBillPresentationMedia(String id, @Valid BillPresentationMedia billPresentationMedia) org.springframework.http.ResponseEntity<BillPresentationMedia>retrieveBillPresentationMedia(String id, @Valid String fields)
-
Method Details
-
listBillPresentationMedia
@RequestMapping(value="/billPresentationMedia", produces="application/json;charset=utf-8", method=GET) org.springframework.http.ResponseEntity<List<BillPresentationMedia>> listBillPresentationMedia(@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) -
retrieveBillPresentationMedia
@RequestMapping(value="/billPresentationMedia/{id}", produces="application/json;charset=utf-8", method=GET) org.springframework.http.ResponseEntity<BillPresentationMedia> retrieveBillPresentationMedia(@PathVariable("id") String id, @Valid @RequestParam(value="fields",required=false) @Valid String fields) -
createBillPresentationMedia
@RequestMapping(value="/billPresentationMedia", produces="application/json;charset=utf-8", method=POST) org.springframework.http.ResponseEntity<BillPresentationMedia> createBillPresentationMedia(@Valid @RequestBody @Valid BillPresentationMedia billPresentationMedia) -
patchBillPresentationMedia
@RequestMapping(value="/billPresentationMedia/{id:.+}", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=PATCH) org.springframework.http.ResponseEntity<BillPresentationMedia> patchBillPresentationMedia(@PathVariable("id") String id, @Valid @RequestBody @Valid BillPresentationMedia billPresentationMedia) -
deleteBillPresentationMedia
-