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