public interface ReviewService
| Modifier and Type | Method and Description |
|---|---|
<any> |
addReview(java.lang.String uuid,
Review review)
Add rating or/and review to a MtgObject.
|
<any> |
reviews(java.lang.String uuid,
java.lang.String language,
java.lang.Long limit,
java.lang.Long offset)
Get rating and reviews for MtgObject by UUID.
|
<any> reviews(java.lang.String uuid,
java.lang.String language,
java.lang.Long limit,
java.lang.Long offset)
uuid - UUID of the MtgObject.language - Returns records for certain language. Example: "&lang=ru". Skip
argument for all languages.limit - The number of individual records that are returned in each page.
Default 25, min:0 (only metadata be returned), max:100.offset - This offsets the start of each page by the number of records specified.
Default 0.<any> addReview(java.lang.String uuid,
Review review)
uuid - UUID of the MtgObject.review - A rating/review.