import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AddressCreate, AddressCreate$Outbound } from "./addresscreate.js"; /** * Bank details */ export type RecipientBankBankDetailsCreate = { /** * Any additional information to be communicated to the recipient bank, such as intermediary banks to be used. */ additionalInfo?: string | undefined; /** * The data structure containing attributes describing the location of an underlying entity. */ address: AddressCreate; /** * The name of the recipient bank / financial institution */ bankName: string; }; /** @internal */ export declare const RecipientBankBankDetailsCreate$inboundSchema: z.ZodType; /** @internal */ export type RecipientBankBankDetailsCreate$Outbound = { additional_info?: string | undefined; address: AddressCreate$Outbound; bank_name: string; }; /** @internal */ export declare const RecipientBankBankDetailsCreate$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 RecipientBankBankDetailsCreate$ { /** @deprecated use `RecipientBankBankDetailsCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `RecipientBankBankDetailsCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `RecipientBankBankDetailsCreate$Outbound` instead. */ type Outbound = RecipientBankBankDetailsCreate$Outbound; } export declare function recipientBankBankDetailsCreateToJSON(recipientBankBankDetailsCreate: RecipientBankBankDetailsCreate): string; export declare function recipientBankBankDetailsCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=recipientbankbankdetailscreate.d.ts.map