/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; export const RefundPolicy = { ConditionalRefund: "conditional-refund", CustomPolicy: "custom-policy", EventBasedPolicy: "event-based-policy", FullRefundExtendedWindow: "full-refund-extended-window", FullRefundWithin30Days: "full-refund-within-30-days", NoRefunds: "no-refunds", PartialRefund: "partial-refund", ProratedRefund: "prorated-refund", StoreCreditOnly: "store-credit-only", } as const; export type RefundPolicy = ClosedEnum; /** @internal */ export const RefundPolicy$inboundSchema: z.ZodNativeEnum = z.nativeEnum(RefundPolicy); /** @internal */ export const RefundPolicy$outboundSchema: z.ZodNativeEnum = RefundPolicy$inboundSchema;