/** * 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 TotpValidateCodeRequest */ export interface TotpValidateCodeRequest { /** * TOTP code to be validated. * @type {string} * @memberof TotpValidateCodeRequest */ code?: string; } /** * Check if a given object implements the TotpValidateCodeRequest interface. */ export declare function instanceOfTotpValidateCodeRequest(value: object): value is TotpValidateCodeRequest; export declare function TotpValidateCodeRequestFromJSON(json: any): TotpValidateCodeRequest; export declare function TotpValidateCodeRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TotpValidateCodeRequest; export declare function TotpValidateCodeRequestToJSON(json: any): TotpValidateCodeRequest; export declare function TotpValidateCodeRequestToJSONTyped(value?: TotpValidateCodeRequest | null, ignoreDiscriminator?: boolean): any;