/** * 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 LeasesRenewLease2Request */ export interface LeasesRenewLease2Request { /** * The desired increment in seconds to the lease * @type {string} * @memberof LeasesRenewLease2Request */ increment?: string; /** * The lease identifier to renew. This is included with a lease. * @type {string} * @memberof LeasesRenewLease2Request */ leaseId?: string; } /** * Check if a given object implements the LeasesRenewLease2Request interface. */ export declare function instanceOfLeasesRenewLease2Request(value: object): value is LeasesRenewLease2Request; export declare function LeasesRenewLease2RequestFromJSON(json: any): LeasesRenewLease2Request; export declare function LeasesRenewLease2RequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): LeasesRenewLease2Request; export declare function LeasesRenewLease2RequestToJSON(json: any): LeasesRenewLease2Request; export declare function LeasesRenewLease2RequestToJSONTyped(value?: LeasesRenewLease2Request | null, ignoreDiscriminator?: boolean): any;