/** * 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 LeasesReadLeaseRequest */ export interface LeasesReadLeaseRequest { /** * The lease identifier to renew. This is included with a lease. * @type {string} * @memberof LeasesReadLeaseRequest */ leaseId?: string; } /** * Check if a given object implements the LeasesReadLeaseRequest interface. */ export declare function instanceOfLeasesReadLeaseRequest(value: object): value is LeasesReadLeaseRequest; export declare function LeasesReadLeaseRequestFromJSON(json: any): LeasesReadLeaseRequest; export declare function LeasesReadLeaseRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): LeasesReadLeaseRequest; export declare function LeasesReadLeaseRequestToJSON(json: any): LeasesReadLeaseRequest; export declare function LeasesReadLeaseRequestToJSONTyped(value?: LeasesReadLeaseRequest | null, ignoreDiscriminator?: boolean): any;