import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Order's invoice data. */ export type OrderInvoice = { /** * The URL to the invoice. */ url: string; }; /** @internal */ export declare const OrderInvoice$inboundSchema: z.ZodMiniType; export declare function orderInvoiceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=orderinvoice.d.ts.map