/** * 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 TokenLookUpAccessorRequest */ export interface TokenLookUpAccessorRequest { /** * Accessor of the token to look up (request body) * @type {string} * @memberof TokenLookUpAccessorRequest */ accessor?: string; } /** * Check if a given object implements the TokenLookUpAccessorRequest interface. */ export declare function instanceOfTokenLookUpAccessorRequest(value: object): value is TokenLookUpAccessorRequest; export declare function TokenLookUpAccessorRequestFromJSON(json: any): TokenLookUpAccessorRequest; export declare function TokenLookUpAccessorRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TokenLookUpAccessorRequest; export declare function TokenLookUpAccessorRequestToJSON(json: any): TokenLookUpAccessorRequest; export declare function TokenLookUpAccessorRequestToJSONTyped(value?: TokenLookUpAccessorRequest | null, ignoreDiscriminator?: boolean): any;