box-open-sdk 0.1.2

Community, unofficial Box API client for Rust — typed models, async managers, and a reqwest runtime with retry, backoff, and token refresh.
Documentation
<!-- Generated by box-gantry. DO NOT EDIT. -->
# HubDocumentManager

Reach these methods through the `hub_document` field on `client::Client`.

## list_pages

`GET /hub_document_pages`

| Parameter | In | Type | Required |
|---|---|---|---|
| `hub_id` | query | `String` | yes |
| `marker` | query | `String` | no |
| `limit` | query | `i64` | no |

**Returns:** `HubDocumentPages`

Paginated — `list_pages(...)` returns a paginator you drive with `.next().await`, threading the cursor for you. See the [pagination guide](../pagination.md).

## list_blocks

`GET /hub_document_blocks`

| Parameter | In | Type | Required |
|---|---|---|---|
| `hub_id` | query | `String` | yes |
| `page_id` | query | `String` | yes |
| `marker` | query | `String` | no |
| `limit` | query | `i64` | no |

**Returns:** `HubDocumentBlocks`

Paginated — `list_blocks(...)` returns a paginator you drive with `.next().await`, threading the cursor for you. See the [pagination guide](../pagination.md).