mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-07 04:20:49 +00:00
27 lines
1.1 KiB
Markdown
27 lines
1.1 KiB
Markdown
# StatisticsBandwidth
|
|
|
|
## Example Usage
|
|
|
|
```typescript
|
|
import { StatisticsBandwidth } from "@lukehagar/plexjs/sdk/models/operations";
|
|
|
|
let value: StatisticsBandwidth = {
|
|
accountID: 238960586,
|
|
deviceID: 208,
|
|
timespan: 6,
|
|
at: 1718387650,
|
|
lan: true,
|
|
bytes: 22,
|
|
};
|
|
```
|
|
|
|
## Fields
|
|
|
|
| Field | Type | Required | Description | Example |
|
|
| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ |
|
|
| `accountID` | *number* | :heavy_minus_sign: | N/A | 238960586 |
|
|
| `deviceID` | *number* | :heavy_minus_sign: | N/A | 208 |
|
|
| `timespan` | *number* | :heavy_minus_sign: | N/A | 6 |
|
|
| `at` | *number* | :heavy_minus_sign: | N/A | 1718387650 |
|
|
| `lan` | *boolean* | :heavy_minus_sign: | N/A | true |
|
|
| `bytes` | *number* | :heavy_minus_sign: | N/A | 22 | |