INPUT_OBJECT

UpdateVideoInput

Input information for updating a video.

link GraphQL Schema definition

1input UpdateVideoInput {
4
2# The description of the video.
3description: String
7
5# The name of the game presented in the video.
6game: String
10
8# The language of the video.
9language: String
13
11# Determines viewability of the video; PUBLIC or PRIVATE.
12scope: VideoPrivacyScope
16
14# The thumbnail URL of the video.
15thumbnailPath: String
19
17# The title of the video.
18title: String
22
20# ID of the video being updated.
21videoID: ID!
23}