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 fully or partially refunded. * * @remarks * * **Discord & Slack support:** Full */ export type WebhookOrderRefundedPayload = { type: "order.refunded"; timestamp: Date; data: Order; }; /** @internal */ export declare const WebhookOrderRefundedPayload$inboundSchema: z.ZodMiniType; /** @internal */ export type WebhookOrderRefundedPayload$Outbound = { type: "order.refunded"; timestamp: string; data: Order$Outbound; }; /** @internal */ export declare const WebhookOrderRefundedPayload$outboundSchema: z.ZodMiniType; export declare function webhookOrderRefundedPayloadToJSON(webhookOrderRefundedPayload: WebhookOrderRefundedPayload): string; export declare function webhookOrderRefundedPayloadFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookorderrefundedpayload.d.ts.map