OBJECT

ExtensionClient

ExtensionClient is the authorization component of an extension.

link GraphQL Schema definition

1type ExtensionClient {
2
3# A organization member assigned as a billing manager for this extension. Null
4# when extension is not an organization or the extension is not monetized.
5assignedBillingManager: OrganizationMember
6
7# CreatedAt is the timestamp at which this client was created.
8createdAt: Time!
9
10# ID is the OAuth ID representing the extension.
11id: ID!
12
13# Name is the name of the extension.
14name: String!
15
16# Organization is the Organization entity of the extension, it means which
17# organization the extension belongs to.
18organization: Organization
19
20# RedirectURI is the URI used for client redirect on OAuth login.
21redirectURI: String!
22
23}