Requests a page of asset balances based on an underlying query. @return a collection of balance objects @throws APIException This exception is raised if the api returns errors while retrieving the balances. @throws BadURLException This exception wraps java.net.MalformedURLException. @throws Connecti
()
| 43 | * @throws JSONException This exception is raised due to malformed json requests or responses. |
| 44 | */ |
| 45 | public Items getPage() throws ChainException { |
| 46 | Items items = this.client.request("list-balances", this.next, Items.class); |
| 47 | items.setClient(this.client); |
| 48 | return items; |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | /** |