Returns a new page of transactions based on the underlying query. @return a page of transactions @throws APIException This exception is raised if the api returns errors while processing the query. @throws BadURLException This exception wraps java.net.MalformedURLException. @throws ConnectivityExcept
()
| 75 | * @throws JSONException This exception is raised due to malformed json requests or responses. |
| 76 | */ |
| 77 | public Items getPage() throws ChainException { |
| 78 | Items items = this.client.request("list-transactions", this.next, Items.class); |
| 79 | items.setClient(this.client); |
| 80 | return items; |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | /** |