/** * 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 PkiRevokeResponse */ export interface PkiRevokeResponse { /** * Revocation Time * @type {number} * @memberof PkiRevokeResponse */ revocationTime?: number; /** * Revocation Time * @type {Date} * @memberof PkiRevokeResponse */ revocationTimeRfc3339?: Date; /** * Revocation State * @type {string} * @memberof PkiRevokeResponse */ state?: string; } /** * Check if a given object implements the PkiRevokeResponse interface. */ export declare function instanceOfPkiRevokeResponse(value: object): value is PkiRevokeResponse; export declare function PkiRevokeResponseFromJSON(json: any): PkiRevokeResponse; export declare function PkiRevokeResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiRevokeResponse; export declare function PkiRevokeResponseToJSON(json: any): PkiRevokeResponse; export declare function PkiRevokeResponseToJSONTyped(value?: PkiRevokeResponse | null, ignoreDiscriminator?: boolean): any;