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