import * as z from "zod"; import { OpenEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The type of bank identifier specified */ export declare enum RecipientBankBankIdCreateType { TypeUnspecified = "TYPE_UNSPECIFIED", Aba = "ABA", Bic = "BIC" } /** * The type of bank identifier specified */ export type RecipientBankBankIdCreateTypeOpen = OpenEnum; /** * A bank identifier */ export type RecipientBankBankIdCreate = { /** * The bank identifier */ id: string; /** * The type of bank identifier specified */ type: RecipientBankBankIdCreateTypeOpen; }; /** @internal */ export declare const RecipientBankBankIdCreateType$inboundSchema: z.ZodType; /** @internal */ export declare const RecipientBankBankIdCreateType$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 RecipientBankBankIdCreateType$ { /** @deprecated use `RecipientBankBankIdCreateType$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `RecipientBankBankIdCreateType$outboundSchema` instead. */ const outboundSchema: z.ZodType; } /** @internal */ export declare const RecipientBankBankIdCreate$inboundSchema: z.ZodType; /** @internal */ export type RecipientBankBankIdCreate$Outbound = { id: string; type: string; }; /** @internal */ export declare const RecipientBankBankIdCreate$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 RecipientBankBankIdCreate$ { /** @deprecated use `RecipientBankBankIdCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `RecipientBankBankIdCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `RecipientBankBankIdCreate$Outbound` instead. */ type Outbound = RecipientBankBankIdCreate$Outbound; } export declare function recipientBankBankIdCreateToJSON(recipientBankBankIdCreate: RecipientBankBankIdCreate): string; export declare function recipientBankBankIdCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=recipientbankbankidcreate.d.ts.map