import * as z from "zod/v3"; import { OpenEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * An enumerated value indicating the issuer-supplied reason for the revocation. */ export declare const Reason: { readonly Unknown: ""; readonly Unspecified: "unspecified"; readonly KeyCompromise: "key_compromise"; readonly CaCompromise: "ca_compromise"; readonly AffiliationChanged: "affiliation_changed"; readonly Superseded: "superseded"; readonly CessationOfOperation: "cessation_of_operation"; readonly CertificateHold: "certificate_hold"; readonly RemoveFromCrl: "remove_from_crl"; readonly PrivilegeWithdrawn: "privilege_withdrawn"; readonly AaCompromise: "aa_compromise"; }; /** * An enumerated value indicating the issuer-supplied reason for the revocation. */ export type Reason = OpenEnum; export type CertificateRevocationRevocationInfo = { nextUpdate?: string | undefined; /** * An enumerated value indicating the issuer-supplied reason for the revocation. */ reason?: Reason | undefined; /** * The issuer-supplied timestamp indicating when the certificate was revoked. */ revocationTime?: string | undefined; /** * Whether the certificate has been revoked before its expiry date by the issuer. */ revoked?: boolean | undefined; }; /** @internal */ export declare const Reason$inboundSchema: z.ZodType; /** @internal */ export declare const CertificateRevocationRevocationInfo$inboundSchema: z.ZodType; export declare function certificateRevocationRevocationInfoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=certificaterevocationrevocationinfo.d.ts.map