OBJECT
FlaggedTrack
Information about the flagged track of copyrighted music.
link GraphQL Schema definition
1 type FlaggedTrack { 2 3 # Title of the album of the flagged track. 4 : String! 5 6 # The appeal for track's usage. 7 : FlaggedTrackAppeal 8 9 # ID of the flagged track. 10 : 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. 14 : 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. 19 : Int 20 21 # Performer of the flagged track. 22 : String! 23 24 # Title of the flagged track. 25 : String! 26 27 }