OBJECT

FlaggedTrack

Information about the flagged track of copyrighted music.

link GraphQL Schema definition

1type FlaggedTrack {
2
3# Title of the album of the flagged track.
4albumTitle: String!
5
6# The appeal for track's usage.
7appeal: FlaggedTrackAppeal
8
9# ID of the flagged track.
10id: ID!
11
12# Duration in seconds of the mute. Standard length is 360 (6 mins).
13# This can be null if the flagged track was succesfully appealed.
14muteDurationSeconds: Int
15
16# Offset is how many seconds into the video the mute begins. 0 indicates the
17# beginning of the video is muted.
18# This can be null if the flagged track was succesfully appealed.
19muteOffsetSeconds: Int
20
21# Performer of the flagged track.
22performer: String!
23
24# Title of the flagged track.
25title: String!
26
27}