/** * 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 KvV2ReadResponse */ export interface KvV2ReadResponse { /** * * @type {object} * @memberof KvV2ReadResponse */ data?: object; /** * * @type {object} * @memberof KvV2ReadResponse */ metadata?: object; } /** * Check if a given object implements the KvV2ReadResponse interface. */ export declare function instanceOfKvV2ReadResponse(value: object): value is KvV2ReadResponse; export declare function KvV2ReadResponseFromJSON(json: any): KvV2ReadResponse; export declare function KvV2ReadResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): KvV2ReadResponse; export declare function KvV2ReadResponseToJSON(json: any): KvV2ReadResponse; export declare function KvV2ReadResponseToJSONTyped(value?: KvV2ReadResponse | null, ignoreDiscriminator?: boolean): any;