public abstract static class ReviewsResponse.Paging
extends java.lang.Object
implements android.os.Parcelable
| Constructor and Description |
|---|
Paging() |
| Modifier and Type | Method and Description |
|---|---|
static ReviewsResponse.Paging |
create(java.lang.Integer limit,
java.lang.Integer returnedCount,
java.lang.Integer totalCount,
java.lang.String next,
java.lang.String previous) |
abstract java.lang.Integer |
limit()
The number of individual records that are returned in each page.
|
abstract java.lang.String |
next()
An endpoint request that will return the next page of data or null.
|
abstract java.lang.String |
previous()
An endpoint request that will return the previous page of data or null.
|
abstract java.lang.Integer |
returnedCount()
The number of returned records in section 'data'.
|
abstract java.lang.Integer |
totalCount()
The total number of review records for the content at request time
(all languages or for certain language passed as parameter).
|
public static ReviewsResponse.Paging create(java.lang.Integer limit, java.lang.Integer returnedCount, java.lang.Integer totalCount, java.lang.String next, java.lang.String previous)
public abstract java.lang.Integer limit()
public abstract java.lang.Integer returnedCount()
public abstract java.lang.Integer totalCount()
public abstract java.lang.String next()
public abstract java.lang.String previous()