/** * Kinde Management API * Provides endpoints to manage your Kinde Businesses * * The version of the OpenAPI document: 1 * Contact: support@kinde.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface TokenIntrospect */ export interface TokenIntrospect { /** * Indicates the status of the token. * @type {boolean} * @memberof TokenIntrospect */ active?: boolean; /** * Array of intended token recipients. * @type {Array} * @memberof TokenIntrospect */ aud?: Array; /** * Identifier for the requesting client. * @type {string} * @memberof TokenIntrospect */ clientId?: string; /** * Token expiration timestamp. * @type {string} * @memberof TokenIntrospect */ exp?: string; /** * Token issuance timestamp. * @type {string} * @memberof TokenIntrospect */ iat?: string; } /** * Check if a given object implements the TokenIntrospect interface. */ export declare function instanceOfTokenIntrospect(value: object): boolean; export declare function TokenIntrospectFromJSON(json: any): TokenIntrospect; export declare function TokenIntrospectFromJSONTyped(json: any, ignoreDiscriminator: boolean): TokenIntrospect; export declare function TokenIntrospectToJSON(value?: TokenIntrospect | null): any;