/** * 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 RewrapRequest */ export interface RewrapRequest { /** * * @type {string} * @memberof RewrapRequest */ token?: string; } /** * Check if a given object implements the RewrapRequest interface. */ export declare function instanceOfRewrapRequest(value: object): value is RewrapRequest; export declare function RewrapRequestFromJSON(json: any): RewrapRequest; export declare function RewrapRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): RewrapRequest; export declare function RewrapRequestToJSON(json: any): RewrapRequest; export declare function RewrapRequestToJSONTyped(value?: RewrapRequest | null, ignoreDiscriminator?: boolean): any;