/** * 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.21.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 SystemWriteNamespacesApiLockUnlockPathRequest */ export interface SystemWriteNamespacesApiLockUnlockPathRequest { /** * Key to unlock the namespace. * @type {string} * @memberof SystemWriteNamespacesApiLockUnlockPathRequest */ unlockKey?: string; } /** * Check if a given object implements the SystemWriteNamespacesApiLockUnlockPathRequest interface. */ export declare function instanceOfSystemWriteNamespacesApiLockUnlockPathRequest(value: object): value is SystemWriteNamespacesApiLockUnlockPathRequest; export declare function SystemWriteNamespacesApiLockUnlockPathRequestFromJSON(json: any): SystemWriteNamespacesApiLockUnlockPathRequest; export declare function SystemWriteNamespacesApiLockUnlockPathRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SystemWriteNamespacesApiLockUnlockPathRequest; export declare function SystemWriteNamespacesApiLockUnlockPathRequestToJSON(json: any): SystemWriteNamespacesApiLockUnlockPathRequest; export declare function SystemWriteNamespacesApiLockUnlockPathRequestToJSONTyped(value?: SystemWriteNamespacesApiLockUnlockPathRequest | null, ignoreDiscriminator?: boolean): any;