OBJECT
ExtensionInstallationSelfEdge
The data that links the active user with a particular extension installation on a channel.
link GraphQL Schema definition
1 type ExtensionInstallationSelfEdge { 2 3 # The extension installation. 4 : ExtensionInstallation 5 6 # Authentication information that links the active user and the installation. 7 : ExtensionToken 8 9 # Configurations set for this extension/user pair. 10 : ExtensionConfiguration 11 12 # The time this response was issuedAt, so the client can set a timer for when 13 # the token needs to be refreshed. 14 : Time 15 16 }