import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { InvoiceStatus } from "./invoicestatus.js"; export type WebhookDataInvoiceUpdated = { accountID: string; invoiceID: string; status: InvoiceStatus; }; /** @internal */ export declare const WebhookDataInvoiceUpdated$inboundSchema: z.ZodType; /** @internal */ export type WebhookDataInvoiceUpdated$Outbound = { accountID: string; invoiceID: string; status: string; }; /** @internal */ export declare const WebhookDataInvoiceUpdated$outboundSchema: z.ZodType; export declare function webhookDataInvoiceUpdatedToJSON(webhookDataInvoiceUpdated: WebhookDataInvoiceUpdated): string; export declare function webhookDataInvoiceUpdatedFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookdatainvoiceupdated.d.ts.map