import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { WebhookDataTransferStatus } from "./webhookdatatransferstatus.js"; import { WebhookTransferPaymentMethodDetails, WebhookTransferPaymentMethodDetails$Outbound } from "./webhooktransferpaymentmethoddetails.js"; export type WebhookDataTransferUpdated = { /** * The accountID which facilitated the transfer. */ accountID: string; transferID: string; status: WebhookDataTransferStatus; /** * Payment method details for the source or destination of a transfer. */ source: WebhookTransferPaymentMethodDetails; /** * Payment method details for the source or destination of a transfer. */ destination: WebhookTransferPaymentMethodDetails; foreignID?: string | undefined; }; /** @internal */ export declare const WebhookDataTransferUpdated$inboundSchema: z.ZodType; /** @internal */ export type WebhookDataTransferUpdated$Outbound = { accountID: string; transferID: string; status: string; source: WebhookTransferPaymentMethodDetails$Outbound; destination: WebhookTransferPaymentMethodDetails$Outbound; foreignID?: string | undefined; }; /** @internal */ export declare const WebhookDataTransferUpdated$outboundSchema: z.ZodType; export declare function webhookDataTransferUpdatedToJSON(webhookDataTransferUpdated: WebhookDataTransferUpdated): string; export declare function webhookDataTransferUpdatedFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookdatatransferupdated.d.ts.map