OBJECT
ExtensionActivationConfig
The current activation configuration for an installed extension.
link GraphQL Schema definition
1 type 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. 6 : 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. 11 : String 12 13 # The activation state of the extension installation. 14 : 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). 20 : 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). 26 : Int 27 28 }