INPUT_OBJECT

CreateVideoAppealInput

CreateVideoAppealInput details needed to create a video appeal.

link GraphQL Schema definition

1input CreateVideoAppealInput {
4
2# city is the appeal city.
3city: String!
7
5# country is the appeal country.
6country: String!
10
8# fullName is the appeal full name.
9fullName: String!
13
11# state is the appeal state.
12state: String!
16
14# streetAddress1 is the appeal street address 1.
15streetAddress1: String!
19
17# streetAddress2 is the appeal street address 2.
18streetAddress2: String
22
20# trackAppeals is list of tracks that are being appealed.
21trackAppeals: [TrackAppealRequestInput!]!
25
23# videoID is the id of the vod that this appeal is for.
24videoID: ID!
28
26# zipcode is the appeal zipcode.
27zipcode: String!
29}