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