/*
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
*/
import * as z from "zod/v4-mini";
import { ClosedEnum } from "../../types/enums.js";
/**
* Print format of the label. If empty, will use the default format set from
*
* @remarks
* the Shippo dashboard.
*/
export const LabelFileTypeEnum = {
Png: "PNG",
PNG23x75: "PNG_2.3x7.5",
Pdf: "PDF",
PDF23x75: "PDF_2.3x7.5",
PDF4x6: "PDF_4x6",
PDF4x8: "PDF_4x8",
PdfA4: "PDF_A4",
PdfA5: "PDF_A5",
PdfA6: "PDF_A6",
Zplii: "ZPLII",
} as const;
/**
* Print format of the label. If empty, will use the default format set from
*
* @remarks
* the Shippo dashboard.
*/
export type LabelFileTypeEnum = ClosedEnum;
/** @internal */
export const LabelFileTypeEnum$inboundSchema: z.ZodMiniEnum<
typeof LabelFileTypeEnum
> = z.enum(LabelFileTypeEnum);
/** @internal */
export const LabelFileTypeEnum$outboundSchema: z.ZodMiniEnum<
typeof LabelFileTypeEnum
> = LabelFileTypeEnum$inboundSchema;