/** * HashiCorp Vault API * HTTP API that gives you full access to Vault. All API routes are prefixed with `/v1/`. * * The version of the OpenAPI document: 1.20.0 * * * 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 OidcIntrospectRequest */ export interface OidcIntrospectRequest { /** * Optional client_id to verify * @type {string} * @memberof OidcIntrospectRequest */ clientId?: string; /** * Token to verify * @type {string} * @memberof OidcIntrospectRequest */ token?: string; } /** * Check if a given object implements the OidcIntrospectRequest interface. */ export declare function instanceOfOidcIntrospectRequest(value: object): value is OidcIntrospectRequest; export declare function OidcIntrospectRequestFromJSON(json: any): OidcIntrospectRequest; export declare function OidcIntrospectRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): OidcIntrospectRequest; export declare function OidcIntrospectRequestToJSON(json: any): OidcIntrospectRequest; export declare function OidcIntrospectRequestToJSONTyped(value?: OidcIntrospectRequest | null, ignoreDiscriminator?: boolean): any;