OBJECT

FlaggedTrackAppeal

The appeal information associated with the flagged track.

link GraphQL Schema definition

1type FlaggedTrackAppeal {
2
3# ID of the track appeal.
4id: ID!
5
6# Reason for the track appeal.
7reason: String!
8
9# Status of the track appeal, ie. PENDING, RESOLVED, UNKNOWN.
10status: FlaggedTrackAppealStatus!
11
12}