cursor method
- @override
- String token
override
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
@override
TransactionsRequestBuilder cursor(String token) {
super.cursor(token);
return this;
}