/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; export const EvidenceType = { Receipt: "receipt", ProofOfDelivery: "proof-of-delivery", CancelationPolicy: "cancelation-policy", TermsOfService: "terms-of-service", CustomerCommunication: "customer-communication", GenericEvidence: "generic-evidence", CoverLetter: "cover-letter", Other: "other", } as const; export type EvidenceType = ClosedEnum; /** @internal */ export const EvidenceType$inboundSchema: z.ZodNativeEnum = z.nativeEnum(EvidenceType); /** @internal */ export const EvidenceType$outboundSchema: z.ZodNativeEnum = EvidenceType$inboundSchema;