/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; import { remap as remap$ } from "../../lib/primitives.js"; export type GetManifestGlobals = { /** * Optional string used to pick a non-default API version to use. See our API version guide. */ shippoApiVersion?: string | undefined; }; export type GetManifestRequest = { /** * Object ID of the manifest to update */ manifestId: string; }; /** @internal */ export type GetManifestRequest$Outbound = { ManifestId: string; }; /** @internal */ export const GetManifestRequest$outboundSchema: z.ZodMiniType< GetManifestRequest$Outbound, GetManifestRequest > = z.pipe( z.object({ manifestId: z.string(), }), z.transform((v) => { return remap$(v, { manifestId: "ManifestId", }); }), ); export function getManifestRequestToJSON( getManifestRequest: GetManifestRequest, ): string { return JSON.stringify( GetManifestRequest$outboundSchema.parse(getManifestRequest), ); }