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

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

## list

`GET /events`

| Parameter | In | Type | Required |
|---|---|---|---|
| `stream_type` | query | `GetStreamType` | no |
| `stream_position` | query | `String` | no |
| `limit` | query | `i64` | no |
| `event_type` | query | `Vec<GetEventType>` | no |
| `created_after` | query | `chrono::DateTime<chrono::Utc>` | no |
| `created_before` | query | `chrono::DateTime<chrono::Utc>` | no |

**Returns:** `Events`

**Example**

```rust
let result = client.events.list(None).await?;
```

## options

`OPTIONS /events`

**Returns:** `RealtimeServers`

**Example**

```rust
let result = client.events.options().await?;
```