/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The type of bank account e.g. checking, savings, loan, creditCard, prepaidCard. */ export const AccountType = { Checking: "checking", Savings: "savings", Loan: "loan", CreditCard: "creditCard", PrepaidCard: "prepaidCard", } as const; /** * The type of bank account e.g. checking, savings, loan, creditCard, prepaidCard. */ export type AccountType = ClosedEnum; /** @internal */ export const AccountType$outboundSchema: z.ZodNativeEnum = z .nativeEnum(AccountType);