mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-06 12:37:46 +00:00
21 lines
576 B
Markdown
21 lines
576 B
Markdown
# SessionLocation
|
|
|
|
The location of the client
|
|
|
|
## Example Usage
|
|
|
|
```typescript
|
|
import { SessionLocation } from "@lukehagar/plexjs/models/shared";
|
|
|
|
let value: SessionLocation = SessionLocation.Wan;
|
|
```
|
|
|
|
## Values
|
|
|
|
This is an open enum. Unrecognized values will be captured as the `Unrecognized<string>` branded type.
|
|
|
|
| Name | Value |
|
|
| ---------------------- | ---------------------- |
|
|
| `Lan` | lan |
|
|
| `Wan` | wan |
|
|
| - | `Unrecognized<string>` | |