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