/** * 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 PkiReadIssuerPemResponse */ export interface PkiReadIssuerPemResponse { /** * CA Chain * @type {Array} * @memberof PkiReadIssuerPemResponse */ caChain?: Array; /** * Certificate * @type {string} * @memberof PkiReadIssuerPemResponse */ certificate?: string; /** * Issuer Id * @type {string} * @memberof PkiReadIssuerPemResponse */ issuerId?: string; /** * Issuer Name * @type {string} * @memberof PkiReadIssuerPemResponse */ issuerName?: string; } /** * Check if a given object implements the PkiReadIssuerPemResponse interface. */ export declare function instanceOfPkiReadIssuerPemResponse(value: object): value is PkiReadIssuerPemResponse; export declare function PkiReadIssuerPemResponseFromJSON(json: any): PkiReadIssuerPemResponse; export declare function PkiReadIssuerPemResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiReadIssuerPemResponse; export declare function PkiReadIssuerPemResponseToJSON(json: any): PkiReadIssuerPemResponse; export declare function PkiReadIssuerPemResponseToJSONTyped(value?: PkiReadIssuerPemResponse | null, ignoreDiscriminator?: boolean): any;