import { IntrospectTokenResponse } from "@polar-sh/sdk/models/components";
let value: IntrospectTokenResponse = {
active: false,
clientId: "<id>",
tokenType: "access_token",
scope: "<value>",
subType: "organization",
sub: "<value>",
aud: "<value>",
iss: "<value>",
exp: 786086,
iat: 706471,
};
Field |
Type |
Required |
Description |
active |
boolean |
✔️ |
N/A |
clientId |
string |
✔️ |
N/A |
tokenType |
components.TokenType |
✔️ |
N/A |
scope |
string |
✔️ |
N/A |
subType |
components.SubType |
✔️ |
N/A |
sub |
string |
✔️ |
N/A |
aud |
string |
✔️ |
N/A |
iss |
string |
✔️ |
N/A |
exp |
number |
✔️ |
N/A |
iat |
number |
✔️ |
N/A |