/* * 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 PaymentActionType = { CheckoutUrl: "checkout_url", PaymentLink: "payment_link", } as const; export type PaymentActionType = OpenEnum; /** @internal */ export const PaymentActionType$inboundSchema: z.ZodMiniType< PaymentActionType, unknown > = openEnums.inboundSchema(PaymentActionType);