box-open-sdk 0.3.1

Box API client for Rust (open source, community, punk rock) — typed models, async managers, and a reqwest runtime with retry, backoff, and token refresh.
Documentation
<!-- Generated by box-gantry. DO NOT EDIT. -->
# HubItemsManager

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

## list

`GET /hub_items`

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

**Returns:** `HubItems`

**Example**

```rust
let mut pages = client.hub_items.list("HUB_ID".to_string(), None);
while let Some(item) = pages.next().await {
    // use item
}
```

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

## create_hub_manage_items

`POST /hubs/{hub_id}/manage_items`

| Parameter | In | Type | Required |
|---|---|---|---|
| `hub_id` | path | `String` | yes |

**Request body** (`application/json`): `HubItemsManageRequest`

**Returns:** `HubItemsManageResponse`

**Example**

```rust
let result = client.hub_items.create_hub_manage_items("HUB_ID".to_string(), schemas::HubItemsManageRequest { /* … */ }).await?;
```