/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Request to introspect an OAuth 2.0 access token, loosely based on RFC 7662. * @export * @interface OAuthTokenIntrospectionRequest */ export interface OAuthTokenIntrospectionRequest { /** * The access token to introspect * @type {string} * @memberof OAuthTokenIntrospectionRequest */ token?: string; /** * Optional maximum authentication age in seconds. If the user's authentication occurred more than this many seconds ago, the token is considered inactive. * @type {number} * @memberof OAuthTokenIntrospectionRequest */ max_age?: number; } /** * Check if a given object implements the OAuthTokenIntrospectionRequest interface. */ export declare function instanceOfOAuthTokenIntrospectionRequest(value: object): value is OAuthTokenIntrospectionRequest; export declare function OAuthTokenIntrospectionRequestFromJSON(json: any): OAuthTokenIntrospectionRequest; export declare function OAuthTokenIntrospectionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): OAuthTokenIntrospectionRequest; export declare function OAuthTokenIntrospectionRequestToJSON(json: any): OAuthTokenIntrospectionRequest; export declare function OAuthTokenIntrospectionRequestToJSONTyped(value?: OAuthTokenIntrospectionRequest | null, ignoreDiscriminator?: boolean): any;