/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; export const RefundTargetType = { PaymentMethod: "payment-method", GiftCardRedemption: "gift-card-redemption", } as const; export type RefundTargetType = OpenEnum; /** @internal */ export const RefundTargetType$inboundSchema: z.ZodType< RefundTargetType, z.ZodTypeDef, unknown > = openEnums.inboundSchema(RefundTargetType); /** @internal */ export const RefundTargetType$outboundSchema: z.ZodType< string, z.ZodTypeDef, RefundTargetType > = openEnums.outboundSchema(RefundTargetType);