/** * 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 RawReadResponse */ export interface RawReadResponse { /** * * @type {string} * @memberof RawReadResponse */ value?: string; } /** * Check if a given object implements the RawReadResponse interface. */ export declare function instanceOfRawReadResponse(value: object): value is RawReadResponse; export declare function RawReadResponseFromJSON(json: any): RawReadResponse; export declare function RawReadResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): RawReadResponse; export declare function RawReadResponseToJSON(json: any): RawReadResponse; export declare function RawReadResponseToJSONTyped(value?: RawReadResponse | null, ignoreDiscriminator?: boolean): any;