Interface ReviewApi
- All Known Implementing Classes:
TmaReviewApiController
@Generated(value="de.hybris.platform.b2ctelcotmfwebservices.swagger.TelcoCodegen",
date="2022-10-21T20:34:47.671Z")
@Validated
@RequestMapping("")
public interface ReviewApi
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<Review>createReview(@Valid Review review, @NotNull @Valid String productOfferingPeriodid, @NotNull @Valid String relatedPartyPeriodid) listReview(@NotNull @Valid String productOfferingPeriodid, @Valid String fields, @Valid Integer offset, @Valid Integer limit)
-
Method Details
-
createReview
@RequestMapping(value="/review", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=POST) org.springframework.http.ResponseEntity<Review> createReview(@Valid @RequestBody @Valid Review review, @NotNull @Valid @RequestParam(value="productOffering.id",required=true) @NotNull @Valid String productOfferingPeriodid, @NotNull @Valid @RequestParam(value="relatedParty.id",required=true) @NotNull @Valid String relatedPartyPeriodid) -
listReview
@RequestMapping(value="/review", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=GET) org.springframework.http.ResponseEntity<List<Review>> listReview(@NotNull @Valid @RequestParam(value="productOffering.id",required=true) @NotNull @Valid String productOfferingPeriodid, @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)
-