/** * 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 SshVerifyOtpRequest */ export interface SshVerifyOtpRequest { /** * [Required] One-Time-Key that needs to be validated * @type {string} * @memberof SshVerifyOtpRequest */ otp?: string; } /** * Check if a given object implements the SshVerifyOtpRequest interface. */ export declare function instanceOfSshVerifyOtpRequest(value: object): value is SshVerifyOtpRequest; export declare function SshVerifyOtpRequestFromJSON(json: any): SshVerifyOtpRequest; export declare function SshVerifyOtpRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SshVerifyOtpRequest; export declare function SshVerifyOtpRequestToJSON(json: any): SshVerifyOtpRequest; export declare function SshVerifyOtpRequestToJSONTyped(value?: SshVerifyOtpRequest | null, ignoreDiscriminator?: boolean): any;