INPUT_OBJECT

ComponentActivationInput

The required configuration to activate a component extension.

link GraphQL Schema definition

1input ComponentActivationInput {
4
2# The slot name of where the component extension should be displayed.
3slot: String!
10
5# The horizontal positioning of the left side of the component extension from the
6# left side
7# of the visible video space as a fixed-point percentage (ie: 5742 would represent
8# 57.42 percent).
9x: Int
16
11# The vertical positioning of the top side of the component extension from the top
12# side
13# of the visible video space as a fixed-point percentage (ie: 5742 would represent
14# 57.42 percent).
15y: Int
17}