import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { DecimalCreate, DecimalCreate$Outbound } from "./decimalcreate.js"; /** * Request to simulate a wire deposit - FOR TESTING */ export type SimulateWireDepositRequestCreate = { /** * A representation of a decimal value, such as 2.5. Clients may convert values into language-native decimal formats, such as Java's [BigDecimal][] or Python's [decimal.Decimal][]. * * @remarks * * [BigDecimal]: * https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html * [decimal.Decimal]: https://docs.python.org/3/library/decimal.html */ amount: DecimalCreate; /** * Whether the transfer should be treated like a domestic wire */ domestic?: boolean | undefined; /** * The parent account of the wire deposit */ parent: string; /** * Whether the transfer should be treated like a third-party wire */ thirdParty?: boolean | undefined; }; /** @internal */ export declare const SimulateWireDepositRequestCreate$inboundSchema: z.ZodType; /** @internal */ export type SimulateWireDepositRequestCreate$Outbound = { amount: DecimalCreate$Outbound; domestic?: boolean | undefined; parent: string; third_party?: boolean | undefined; }; /** @internal */ export declare const SimulateWireDepositRequestCreate$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace SimulateWireDepositRequestCreate$ { /** @deprecated use `SimulateWireDepositRequestCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SimulateWireDepositRequestCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SimulateWireDepositRequestCreate$Outbound` instead. */ type Outbound = SimulateWireDepositRequestCreate$Outbound; } export declare function simulateWireDepositRequestCreateToJSON(simulateWireDepositRequestCreate: SimulateWireDepositRequestCreate): string; export declare function simulateWireDepositRequestCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=simulatewiredepositrequestcreate.d.ts.map