OBJECT

VideoRestriction

Restrictions for viewing of a video. Resolves if a video is restricted, null otherwise.

link GraphQL Schema definition

1type VideoRestriction {
2
3# The product "short name" a user needs to purchase to view the video.
4productName: String!
5
6# The name of the product shown to users.
7productTitle: String!
8
9# The reason a video is restricted.
10reason: String!
11
12# The type of restriction the video has.
13type: String!
14
15}

link Required by