import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Order, Order$Outbound } from "./order.js"; /** * Sent when an order is paid. * * @remarks * * When you receive this event, the order is fully processed and payment has been received. * * **Discord & Slack support:** Full */ export type WebhookOrderPaidPayload = { type: "order.paid"; timestamp: Date; data: Order; }; /** @internal */ export declare const WebhookOrderPaidPayload$inboundSchema: z.ZodMiniType; /** @internal */ export type WebhookOrderPaidPayload$Outbound = { type: "order.paid"; timestamp: string; data: Order$Outbound; }; /** @internal */ export declare const WebhookOrderPaidPayload$outboundSchema: z.ZodMiniType; export declare function webhookOrderPaidPayloadToJSON(webhookOrderPaidPayload: WebhookOrderPaidPayload): string; export declare function webhookOrderPaidPayloadFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookorderpaidpayload.d.ts.map