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

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

## get

`GET /folders/{folder_id}/metadata/enterprise/securityClassification-6VMVochwUWo`

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

**Returns:** `Classification`

**Example**

```rust
let result = client.folder_classifications.get("FOLDER_ID".to_string()).await?;
```

## update

`PUT /folders/{folder_id}/metadata/enterprise/securityClassification-6VMVochwUWo`

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

**Request body** (`application/json-patch+json`): `Vec<FileClassificationUpdateRequest>`

**Returns:** `Classification`

**Example**

```rust
let result = client.folder_classifications.update("FOLDER_ID".to_string(), vec![]).await?;
```

## create

`POST /folders/{folder_id}/metadata/enterprise/securityClassification-6VMVochwUWo`

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

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

**Returns:** `Classification`

**Example**

```rust
let result = client.folder_classifications.create("FOLDER_ID".to_string(), schemas::FileClassificationCreateRequest { /* … */ }).await?;
```

## delete

`DELETE /folders/{folder_id}/metadata/enterprise/securityClassification-6VMVochwUWo`

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

**Returns:** no content

**Example**

```rust
client.folder_classifications.delete("FOLDER_ID".to_string()).await?;
```