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 EmployeeBankAccountAccountType: { readonly Checking: "Checking"; readonly Savings: "Savings"; }; /** * Bank account type */ export type EmployeeBankAccountAccountType = ClosedEnum; export type EmployeeBankAccount = { /** * UUID of the bank account */ uuid: string; /** * UUID of the employee */ employeeUuid?: string | undefined; /** * Bank account type */ accountType?: EmployeeBankAccountAccountType | undefined; /** * Name for the bank account */ name?: string | undefined; /** * The bank account's routing number */ routingNumber?: string | undefined; /** * Masked bank account number */ hiddenAccountNumber?: string | undefined; }; /** @internal */ export declare const EmployeeBankAccountAccountType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const EmployeeBankAccount$inboundSchema: z.ZodType; export declare function employeeBankAccountFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=employeebankaccount.d.ts.map