import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Bank account type */ export declare const ContractorBankAccountAccountType: { readonly Checking: "Checking"; readonly Savings: "Savings"; }; /** * Bank account type */ export type ContractorBankAccountAccountType = ClosedEnum; export type ContractorBankAccount = { /** * UUID of the bank account */ uuid: string; /** * UUID of the contractor */ contractorUuid: string; /** * Bank account type */ accountType: ContractorBankAccountAccountType; /** * Name for the bank account */ name: string; /** * The bank account's routing number */ routingNumber: string; /** * Masked bank account number */ hiddenAccountNumber: string; }; /** @internal */ export declare const ContractorBankAccountAccountType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ContractorBankAccount$inboundSchema: z.ZodType; export declare function contractorBankAccountFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=contractorbankaccount.d.ts.map