/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; export const PaymentDestinationType = { Invoice: "INVOICE", Customer: "CUSTOMER", } as const; export type PaymentDestinationType = OpenEnum; /** @internal */ export const PaymentDestinationType$inboundSchema: z.ZodMiniType< PaymentDestinationType, unknown > = openEnums.inboundSchema(PaymentDestinationType); /** @internal */ export const PaymentDestinationType$outboundSchema: z.ZodMiniType< string, PaymentDestinationType > = openEnums.outboundSchema(PaymentDestinationType);