/** * 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 StandardListResponse */ export interface StandardListResponse { /** * * @type {Array} * @memberof StandardListResponse */ keys?: Array; } /** * Check if a given object implements the StandardListResponse interface. */ export declare function instanceOfStandardListResponse(value: object): value is StandardListResponse; export declare function StandardListResponseFromJSON(json: any): StandardListResponse; export declare function StandardListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): StandardListResponse; export declare function StandardListResponseToJSON(json: any): StandardListResponse; export declare function StandardListResponseToJSONTyped(value?: StandardListResponse | null, ignoreDiscriminator?: boolean): any;