OBJECT

ExtensionInstallationSelfEdge

The data that links the active user with a particular extension installation on a channel.

link GraphQL Schema definition

1type ExtensionInstallationSelfEdge {
2
3# The extension installation.
4installation: ExtensionInstallation
5
6# Authentication information that links the active user and the installation.
7token: ExtensionToken
8
9# Configurations set for this extension/user pair.
10configuration: 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.
14issuedAt: Time
15
16}