mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-06 12:37:46 +00:00
21 lines
626 B
Markdown
21 lines
626 B
Markdown
# MailingListStatus
|
|
|
|
Your current mailing list status (active or unsubscribed)
|
|
|
|
## Example Usage
|
|
|
|
```typescript
|
|
import { MailingListStatus } from "@lukehagar/plexjs/sdk/models/operations";
|
|
|
|
let value: MailingListStatus = MailingListStatus.Active;
|
|
```
|
|
|
|
## Values
|
|
|
|
This is an open enum. Unrecognized values will be captured as the `Unrecognized<string>` branded type.
|
|
|
|
| Name | Value |
|
|
| ---------------------- | ---------------------- |
|
|
| `Active` | active |
|
|
| `Unsubscribed` | unsubscribed |
|
|
| - | `Unrecognized<string>` | |