/** * 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 TokenLookUpSelf2Request */ export interface TokenLookUpSelf2Request { /** * Token to look up (unused, does not need to be set) * @type {string} * @memberof TokenLookUpSelf2Request */ token?: string; } /** * Check if a given object implements the TokenLookUpSelf2Request interface. */ export declare function instanceOfTokenLookUpSelf2Request(value: object): value is TokenLookUpSelf2Request; export declare function TokenLookUpSelf2RequestFromJSON(json: any): TokenLookUpSelf2Request; export declare function TokenLookUpSelf2RequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TokenLookUpSelf2Request; export declare function TokenLookUpSelf2RequestToJSON(json: any): TokenLookUpSelf2Request; export declare function TokenLookUpSelf2RequestToJSONTyped(value?: TokenLookUpSelf2Request | null, ignoreDiscriminator?: boolean): any;