/** * 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 KvV2PatchResponse */ export interface KvV2PatchResponse { /** * * @type {Date} * @memberof KvV2PatchResponse */ createdTime?: Date; /** * * @type {object} * @memberof KvV2PatchResponse */ customMetadata?: object; /** * * @type {string} * @memberof KvV2PatchResponse */ deletionTime?: string; /** * * @type {boolean} * @memberof KvV2PatchResponse */ destroyed?: boolean; /** * * @type {number} * @memberof KvV2PatchResponse */ version?: number; } /** * Check if a given object implements the KvV2PatchResponse interface. */ export declare function instanceOfKvV2PatchResponse(value: object): value is KvV2PatchResponse; export declare function KvV2PatchResponseFromJSON(json: any): KvV2PatchResponse; export declare function KvV2PatchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): KvV2PatchResponse; export declare function KvV2PatchResponseToJSON(json: any): KvV2PatchResponse; export declare function KvV2PatchResponseToJSONTyped(value?: KvV2PatchResponse | null, ignoreDiscriminator?: boolean): any;