mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-06 04:20:46 +00:00
22 lines
728 B
Markdown
22 lines
728 B
Markdown
# EnableCreditsMarkerGeneration
|
|
|
|
Setting that indicates if credits markers detection is enabled. (-1 = Library default, 0 = Disabled).
|
|
|
|
## Example Usage
|
|
|
|
```typescript
|
|
import { EnableCreditsMarkerGeneration } from "@lukehagar/plexjs/sdk/models/operations";
|
|
|
|
let value: EnableCreditsMarkerGeneration =
|
|
EnableCreditsMarkerGeneration.LibraryDefault;
|
|
```
|
|
|
|
## Values
|
|
|
|
This is an open enum. Unrecognized values will be captured as the `Unrecognized<string>` branded type.
|
|
|
|
| Name | Value |
|
|
| ---------------------- | ---------------------- |
|
|
| `LibraryDefault` | -1 |
|
|
| `Disabled` | 0 |
|
|
| - | `Unrecognized<string>` | |