/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; export type GetFleetGlobals = { orgId?: string | undefined; }; export type GetFleetRequest = { fleetId: string; orgId?: string | undefined; }; /** @internal */ export type GetFleetRequest$Outbound = { fleetId: string; orgId?: string | undefined; }; /** @internal */ export const GetFleetRequest$outboundSchema: z.ZodType< GetFleetRequest$Outbound, z.ZodTypeDef, GetFleetRequest > = z.object({ fleetId: z.string(), orgId: z.string().optional(), }); export function getFleetRequestToJSON( getFleetRequest: GetFleetRequest, ): string { return JSON.stringify(GetFleetRequest$outboundSchema.parse(getFleetRequest)); }