cursor method

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