ENUM

ClipCreationState

An enumeration on the different status strings returned by a clip status.

link GraphQL Schema definition

1enum ClipCreationState {
2
3# The creating status indicates that the source quality video is still
4# undergoing processing and transcoding.
5CREATING
6
7# Clip has been successfully created in the source video quality.
8# The field videoQualities will be gradually added to with other quality options.
9CREATED
10
11# Clip creation failed and will remain in this state.
12# Possible errors can happen due to problems in downloading and slicing
13# the source of the original video, clipping offline channels, transcoding, etc.
14FAILED
15}