mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-06 12:37:46 +00:00
21 lines
618 B
Markdown
21 lines
618 B
Markdown
# PlexDeviceProtocol
|
|
|
|
The protocol used for the connection (http, https, etc)
|
|
|
|
## Example Usage
|
|
|
|
```typescript
|
|
import { PlexDeviceProtocol } from "@lukehagar/plexjs/models/shared";
|
|
|
|
let value: PlexDeviceProtocol = PlexDeviceProtocol.Http;
|
|
```
|
|
|
|
## Values
|
|
|
|
This is an open enum. Unrecognized values will be captured as the `Unrecognized<string>` branded type.
|
|
|
|
| Name | Value |
|
|
| ---------------------- | ---------------------- |
|
|
| `Http` | http |
|
|
| `Https` | https |
|
|
| - | `Unrecognized<string>` | |