/** * 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 PkiReadIssuersConfigurationResponse */ export interface PkiReadIssuersConfigurationResponse { /** * Reference (name or identifier) to the default issuer. * @type {string} * @memberof PkiReadIssuersConfigurationResponse */ _default?: string; /** * Whether the default issuer should automatically follow the latest generated or imported issuer. Defaults to false. * @type {boolean} * @memberof PkiReadIssuersConfigurationResponse */ defaultFollowsLatestIssuer?: boolean; } /** * Check if a given object implements the PkiReadIssuersConfigurationResponse interface. */ export declare function instanceOfPkiReadIssuersConfigurationResponse(value: object): value is PkiReadIssuersConfigurationResponse; export declare function PkiReadIssuersConfigurationResponseFromJSON(json: any): PkiReadIssuersConfigurationResponse; export declare function PkiReadIssuersConfigurationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiReadIssuersConfigurationResponse; export declare function PkiReadIssuersConfigurationResponseToJSON(json: any): PkiReadIssuersConfigurationResponse; export declare function PkiReadIssuersConfigurationResponseToJSONTyped(value?: PkiReadIssuersConfigurationResponse | null, ignoreDiscriminator?: boolean): any;