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