/** * 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 PkiReadCertCaChainResponse */ export interface PkiReadCertCaChainResponse { /** * Issuing CA Chain * @type {string} * @memberof PkiReadCertCaChainResponse */ caChain?: string; /** * Certificate * @type {string} * @memberof PkiReadCertCaChainResponse */ certificate?: string; /** * ID of the issuer * @type {string} * @memberof PkiReadCertCaChainResponse */ issuerId?: string; /** * Revocation time * @type {number} * @memberof PkiReadCertCaChainResponse */ revocationTime?: number; /** * Revocation time RFC 3339 formatted * @type {string} * @memberof PkiReadCertCaChainResponse */ revocationTimeRfc3339?: string; } /** * Check if a given object implements the PkiReadCertCaChainResponse interface. */ export declare function instanceOfPkiReadCertCaChainResponse(value: object): value is PkiReadCertCaChainResponse; export declare function PkiReadCertCaChainResponseFromJSON(json: any): PkiReadCertCaChainResponse; export declare function PkiReadCertCaChainResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiReadCertCaChainResponse; export declare function PkiReadCertCaChainResponseToJSON(json: any): PkiReadCertCaChainResponse; export declare function PkiReadCertCaChainResponseToJSONTyped(value?: PkiReadCertCaChainResponse | null, ignoreDiscriminator?: boolean): any;