mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-06 04:20:46 +00:00
26 lines
1.5 KiB
Markdown
26 lines
1.5 KiB
Markdown
# GetUsersResponse
|
|
|
|
Successful response with media container data in JSON
|
|
|
|
## Example Usage
|
|
|
|
```typescript
|
|
import { GetUsersResponse } from "@lukehagar/plexjs/models/operations";
|
|
|
|
let value: GetUsersResponse = {
|
|
mediaContainer: {
|
|
friendlyName: "myPlex",
|
|
identifier: "com.plexapp.plugins.myplex",
|
|
machineIdentifier: "3dff4c4da3b1229a649aa574a9e2b419a684a20e",
|
|
totalSize: 30,
|
|
size: 30,
|
|
user: [],
|
|
},
|
|
};
|
|
```
|
|
|
|
## Fields
|
|
|
|
| Field | Type | Required | Description |
|
|
| -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- |
|
|
| `mediaContainer` | [operations.GetUsersMediaContainer](../../models/operations/getusersmediacontainer.md) | :heavy_minus_sign: | Container holding user and server details. | |