/* * 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 CVVResponseCode = { Match: "match", NoMatch: "no_match", Unavailable: "unavailable", NotProvided: "not_provided", } as const; export type CVVResponseCode = OpenEnum; /** @internal */ export const CVVResponseCode$inboundSchema: z.ZodType< CVVResponseCode, z.ZodTypeDef, unknown > = openEnums.inboundSchema(CVVResponseCode);