/** * 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 RekeyVerificationCancelResponse */ export interface RekeyVerificationCancelResponse { /** * * @type {number} * @memberof RekeyVerificationCancelResponse */ n?: number; /** * * @type {string} * @memberof RekeyVerificationCancelResponse */ nonce?: string; /** * * @type {number} * @memberof RekeyVerificationCancelResponse */ progress?: number; /** * * @type {boolean} * @memberof RekeyVerificationCancelResponse */ started?: boolean; /** * * @type {number} * @memberof RekeyVerificationCancelResponse */ t?: number; } /** * Check if a given object implements the RekeyVerificationCancelResponse interface. */ export declare function instanceOfRekeyVerificationCancelResponse(value: object): value is RekeyVerificationCancelResponse; export declare function RekeyVerificationCancelResponseFromJSON(json: any): RekeyVerificationCancelResponse; export declare function RekeyVerificationCancelResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): RekeyVerificationCancelResponse; export declare function RekeyVerificationCancelResponseToJSON(json: any): RekeyVerificationCancelResponse; export declare function RekeyVerificationCancelResponseToJSONTyped(value?: RekeyVerificationCancelResponse | null, ignoreDiscriminator?: boolean): any;