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