import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Current status of the Generated Document */ export declare const GeneratedDocumentStatus: { readonly Pending: "pending"; readonly Started: "started"; readonly Succeeded: "succeeded"; readonly Failed: "failed"; }; /** * Current status of the Generated Document */ export type GeneratedDocumentStatus = ClosedEnum; export type GeneratedDocument = { /** * A unique identifier of the Generated Document request */ requestUuid?: string | undefined; /** * Current status of the Generated Document */ status?: GeneratedDocumentStatus | undefined; /** * The array of urls to access the documents. */ documentUrls?: Array | undefined; }; /** @internal */ export declare const GeneratedDocumentStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GeneratedDocument$inboundSchema: z.ZodType; export declare function generatedDocumentFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=generateddocument.d.ts.map