OBJECT
ExtensionInstallationFeatureFlags
The set of extension features an installer can opt in or out of.
link GraphQL Schema definition
1 type ExtensionInstallationFeatureFlags { 2 3 # Whether the installer has granted the extension access to their subscriptions 4 # list. 5 : Boolean! 6 7 # Whether the installer has opted in or out of chat capabilities in extensions. 8 : Boolean! 9 10 # Whether the installer has opted in or out of bit capabilities in extensions. 11 : Boolean! 12 13 # The dynamic management settings for the extension installation. 14 : [ExtensionInstallationDynamicManagement!] 15 16 }