import * as z from "zod/v3"; export type WireInRequestUpdateRequestBody = { /** * The date the wire was sent */ dateSent: string; /** * Name of the bank sending the wire */ bankName: string; /** * Amount of money sent */ amountSent: string; /** * Additional notes */ additionalNotes?: string | undefined; }; /** @internal */ export type WireInRequestUpdateRequestBody$Outbound = { date_sent: string; bank_name: string; amount_sent: string; additional_notes?: string | undefined; }; /** @internal */ export declare const WireInRequestUpdateRequestBody$outboundSchema: z.ZodType; export declare function wireInRequestUpdateRequestBodyToJSON(wireInRequestUpdateRequestBody: WireInRequestUpdateRequestBody): string; //# sourceMappingURL=wireinrequestupdaterequestbody.d.ts.map