/** * 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 PkiReadKeysConfigurationResponse */ export interface PkiReadKeysConfigurationResponse { /** * Reference (name or identifier) to the default issuer. * @type {string} * @memberof PkiReadKeysConfigurationResponse */ _default?: string; } /** * Check if a given object implements the PkiReadKeysConfigurationResponse interface. */ export declare function instanceOfPkiReadKeysConfigurationResponse(value: object): value is PkiReadKeysConfigurationResponse; export declare function PkiReadKeysConfigurationResponseFromJSON(json: any): PkiReadKeysConfigurationResponse; export declare function PkiReadKeysConfigurationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiReadKeysConfigurationResponse; export declare function PkiReadKeysConfigurationResponseToJSON(json: any): PkiReadKeysConfigurationResponse; export declare function PkiReadKeysConfigurationResponseToJSONTyped(value?: PkiReadKeysConfigurationResponse | null, ignoreDiscriminator?: boolean): any;