ENUM

VideoDownloadStatus

List of possible video download statuses.

link GraphQL Schema definition

1enum VideoDownloadStatus {
2
3# The video download is created.
4CREATED
5
6# The video download is submitted.
7SUBMITTED
8
9# The video download is downloading.
10DOWNLOADING
11
12# The video download is transmuxing.
13TRANSMUXING
14
15# The video download failed to create.
16FAILED
17
18# The video download is completed.
19COMPLETE
20
21# The video download status is unknown.
22UNKNOWN
23}