OBJECT

VideoMutedSegment

Information about one contiguous muted portion of video.

link GraphQL Schema definition

1type VideoMutedSegment {
2
3# Duration in seconds of the mute. Standard length is 360 (6 mins).
4duration: Int!
5
6# Offset is how many seconds into the video the mute begins. 0 indicates the
7# beginning of the video is muted.
8offset: Int!
9
10}