/** * 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 TokenRenewRequest */ export interface TokenRenewRequest { /** * The desired increment in seconds to the token expiration * @type {string} * @memberof TokenRenewRequest */ increment?: string; /** * Token to renew (request body) * @type {string} * @memberof TokenRenewRequest */ token?: string; } /** * Check if a given object implements the TokenRenewRequest interface. */ export declare function instanceOfTokenRenewRequest(value: object): value is TokenRenewRequest; export declare function TokenRenewRequestFromJSON(json: any): TokenRenewRequest; export declare function TokenRenewRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TokenRenewRequest; export declare function TokenRenewRequestToJSON(json: any): TokenRenewRequest; export declare function TokenRenewRequestToJSONTyped(value?: TokenRenewRequest | null, ignoreDiscriminator?: boolean): any;