/** * 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 PkiListKeysResponse */ export interface PkiListKeysResponse { /** * Key info with issuer name * @type {object} * @memberof PkiListKeysResponse */ keyInfo?: object; /** * A list of keys * @type {Array} * @memberof PkiListKeysResponse */ keys?: Array; } /** * Check if a given object implements the PkiListKeysResponse interface. */ export declare function instanceOfPkiListKeysResponse(value: object): value is PkiListKeysResponse; export declare function PkiListKeysResponseFromJSON(json: any): PkiListKeysResponse; export declare function PkiListKeysResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiListKeysResponse; export declare function PkiListKeysResponseToJSON(json: any): PkiListKeysResponse; export declare function PkiListKeysResponseToJSONTyped(value?: PkiListKeysResponse | null, ignoreDiscriminator?: boolean): any;