/** * 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 WellKnownListLabelsResponse */ export interface WellKnownListLabelsResponse { /** * * @type {Array} * @memberof WellKnownListLabelsResponse */ keys?: Array; } /** * Check if a given object implements the WellKnownListLabelsResponse interface. */ export declare function instanceOfWellKnownListLabelsResponse(value: object): value is WellKnownListLabelsResponse; export declare function WellKnownListLabelsResponseFromJSON(json: any): WellKnownListLabelsResponse; export declare function WellKnownListLabelsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): WellKnownListLabelsResponse; export declare function WellKnownListLabelsResponseToJSON(json: any): WellKnownListLabelsResponse; export declare function WellKnownListLabelsResponseToJSONTyped(value?: WellKnownListLabelsResponse | null, ignoreDiscriminator?: boolean): any;