mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-07 12:37:45 +00:00
24 lines
969 B
Markdown
24 lines
969 B
Markdown
# Device
|
|
|
|
## Example Usage
|
|
|
|
```typescript
|
|
import { Device } from "@lukehagar/plexjs/sdk/models/operations";
|
|
|
|
let value: Device = {
|
|
id: 1,
|
|
name: "iPhone",
|
|
platform: "iOS",
|
|
createdAt: 1654131230,
|
|
};
|
|
```
|
|
|
|
## Fields
|
|
|
|
| Field | Type | Required | Description | Example |
|
|
| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ |
|
|
| `id` | *number* | :heavy_minus_sign: | N/A | 1 |
|
|
| `name` | *string* | :heavy_minus_sign: | N/A | iPhone |
|
|
| `platform` | *string* | :heavy_minus_sign: | N/A | iOS |
|
|
| `clientIdentifier` | *string* | :heavy_minus_sign: | N/A | |
|
|
| `createdAt` | *number* | :heavy_minus_sign: | N/A | 1654131230 | |