README.md in eventbrite_sdk-3.3.1 vs README.md in eventbrite_sdk-3.4.0
- old
+ new
@@ -89,9 +89,19 @@
# events is now an enumerable object that you can access using bracket notation or first/last
events.first => events[0]
events.last => events[-1]
+# endpoints that support continuations: will be inferred from the current payload
+# you can tell if a paginated result set supports continuations by checking for a non-nil #continuation
+
+example.continuation #=> "dGhpcyBpcyBwYWdlIDE"
+
+# you can continue until the example returns nil, which means there are no more items
+example.continue
+
+# you can also provide a token if you choose to do so
+example.continue(continuation_token: 'my_token')
```
# Construct endpoint paths:
``` ruby