/** * 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 WellKnownReadLabelResponse */ export interface WellKnownReadLabelResponse { /** * * @type {string} * @memberof WellKnownReadLabelResponse */ label?: string; /** * * @type {string} * @memberof WellKnownReadLabelResponse */ mountPath?: string; /** * * @type {string} * @memberof WellKnownReadLabelResponse */ mountUuid?: string; /** * * @type {string} * @memberof WellKnownReadLabelResponse */ prefix?: string; } /** * Check if a given object implements the WellKnownReadLabelResponse interface. */ export declare function instanceOfWellKnownReadLabelResponse(value: object): value is WellKnownReadLabelResponse; export declare function WellKnownReadLabelResponseFromJSON(json: any): WellKnownReadLabelResponse; export declare function WellKnownReadLabelResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): WellKnownReadLabelResponse; export declare function WellKnownReadLabelResponseToJSON(json: any): WellKnownReadLabelResponse; export declare function WellKnownReadLabelResponseToJSONTyped(value?: WellKnownReadLabelResponse | null, ignoreDiscriminator?: boolean): any;