OBJECT

ExtensionActivationConfig

The current activation configuration for an installed extension.

link GraphQL Schema definition

1type ExtensionActivationConfig {
2
3# The anchor that the installation has been activated into. If not activated into
4# a slot,
5# the value will be null.
6anchor: ExtensionAnchor
7
8# The slot that the installation has been activated into. If not activated into a
9# slot,
10# the value will be null.
11slot: String
12
13# The activation state of the extension installation.
14state: ActivationState!
15
16# The horizontal positioning of the left side of the component extension from the
17# left side
18# of the visible video space as a fixed-point percentage (ie: 5742 would represent
19# 57.42 percent).
20x: Int
21
22# The vertical positioning of the top side of the component extension from the top
23# side
24# of the visible video space as a fixed-point percentage (ie: 5742 would represent
25# 57.42 percent).
26y: Int
27
28}