Skip to content

Latest commit

 

History

History
35 lines (30 loc) · 5.51 KB

introspecttokenresponse.md

File metadata and controls

35 lines (30 loc) · 5.51 KB

IntrospectTokenResponse

Example Usage

import { IntrospectTokenResponse } from "@polar-sh/sdk/models/components";

let value: IntrospectTokenResponse = {
  active: false,
  clientId: "<id>",
  tokenType: "refresh_token",
  scope: "<value>",
  subType: "organization",
  sub: "<value>",
  aud: "<value>",
  iss: "<value>",
  exp: 582474,
  iat: 578110,
};

Fields

Field Type Required Description
active boolean ✔️ N/A
clientId string ✔️ N/A
tokenType components.IntrospectTokenResponseTokenType ✔️ 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