Files
plexjs/docs/models/operations/createdownloadqueuestatus.md

1.1 KiB

CreateDownloadQueueStatus

The state of this queue

  • deciding: At least one item is still being decided
  • waiting: At least one item is waiting for transcode and none are currently transcoding
  • processing: At least one item is being transcoded
  • done: All items are available (or potentially expired)
  • error: At least one item has encountered an error

Example Usage

import { CreateDownloadQueueStatus } from "@lukehagar/plexjs/models/operations";

let value: CreateDownloadQueueStatus = CreateDownloadQueueStatus.Error;

Values

This is an open enum. Unrecognized values will be captured as the Unrecognized<string> branded type.

Name Value
Deciding deciding
Waiting waiting
Processing processing
Done done
Error error
- Unrecognized<string>