import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ExternalAccountCreate, ExternalAccountCreate$Outbound } from "./externalaccountcreate.js"; /** * The delivering/receiving party information */ export type TransferAccountCreate = { /** * The internal apex account id */ apexAccountId?: string | undefined; /** * The external account information */ externalAccount?: ExternalAccountCreate | undefined; }; /** @internal */ export declare const TransferAccountCreate$inboundSchema: z.ZodType; /** @internal */ export type TransferAccountCreate$Outbound = { apex_account_id?: string | undefined; external_account?: ExternalAccountCreate$Outbound | undefined; }; /** @internal */ export declare const TransferAccountCreate$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 TransferAccountCreate$ { /** @deprecated use `TransferAccountCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `TransferAccountCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `TransferAccountCreate$Outbound` instead. */ type Outbound = TransferAccountCreate$Outbound; } export declare function transferAccountCreateToJSON(transferAccountCreate: TransferAccountCreate): string; export declare function transferAccountCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=transferaccountcreate.d.ts.map