ENUM

ActivationState

ActivationState contains possible activation states found in the ActivationConfig.

link GraphQL Schema definition

1enum ActivationState {
2
3# The extension is activated into a slot on the channel.
4ACTIVE
5
6# The extension has not been activated into a slot or required permsissions/config
7# is not set up yet.
8INACTIVE
9
10# The user rejected the permissions required for the extension to be activated.
11REJECTED_PERMISSIONS
12}