<!-- Generated by box-gantry. DO NOT EDIT. -->
# TrashedItemsManager
Reach these methods through the `trashed_items` field on `client::Client`.
## list_folder_trash_items
`GET /folders/trash/items`
| Parameter | In | Type | Required |
|---|---|---|---|
| `fields` | query | `Vec<String>` | no |
| `limit` | query | `i64` | no |
| `offset` | query | `i64` | no |
| `usemarker` | query | `bool` | no |
| `marker` | query | `String` | no |
| `direction` | query | `OrderDirection` | no |
| `sort` | query | `GetFolderTrashItemsSort` | no |
**Returns:** `Items`
**Example**
```rust
let mut pages = client.trashed_items.list_folder_trash_items(None);
while let Some(item) = pages.next().await {
// use item
}
```
Paginated — `list_folder_trash_items(...)` returns a paginator you drive with `.next().await`, threading the cursor for you. See the [pagination guide](../pagination.md).