box-open-sdk 0.4.0

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. -->
# NotesManager

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

## convert

`POST /notes/convert`

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

**Returns:** `NotesConvertResponse`

**Example**

```rust
let result = client.notes.convert(schemas::NotesConvertRequestBody { /* … */ }).await?;
```