cursor method

RequestBuilder cursor(
  1. String cursor
)

Sets cursor parameter on the request. A cursor is a value that points to a specific location in a collection of resources. The cursor attribute itself is an opaque value meaning that users should not try to parse it.

Implementation

RequestBuilder cursor(String cursor) {
  queryParameters.addAll({"cursor": cursor});
  return this;
}