/** * 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.21.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 RawWriteRequest */ export interface RawWriteRequest { /** * * @type {boolean} * @memberof RawWriteRequest */ compressed?: boolean; /** * * @type {string} * @memberof RawWriteRequest */ compressionType?: string; /** * * @type {string} * @memberof RawWriteRequest */ encoding?: string; /** * * @type {string} * @memberof RawWriteRequest */ value?: string; } /** * Check if a given object implements the RawWriteRequest interface. */ export declare function instanceOfRawWriteRequest(value: object): value is RawWriteRequest; export declare function RawWriteRequestFromJSON(json: any): RawWriteRequest; export declare function RawWriteRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): RawWriteRequest; export declare function RawWriteRequestToJSON(json: any): RawWriteRequest; export declare function RawWriteRequestToJSONTyped(value?: RawWriteRequest | null, ignoreDiscriminator?: boolean): any;