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