/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; import * as components from "../components/index.js"; export type GetStoppedProcessesGlobals = { appId?: string | undefined; }; export type GetStoppedProcessesRequest = { appId?: string | undefined; region?: components.Region | undefined; }; /** @internal */ export type GetStoppedProcessesRequest$Outbound = { appId?: string | undefined; region?: string | undefined; }; /** @internal */ export const GetStoppedProcessesRequest$outboundSchema: z.ZodType< GetStoppedProcessesRequest$Outbound, z.ZodTypeDef, GetStoppedProcessesRequest > = z.object({ appId: z.string().optional(), region: components.Region$outboundSchema.optional(), }); export function getStoppedProcessesRequestToJSON( getStoppedProcessesRequest: GetStoppedProcessesRequest, ): string { return JSON.stringify( GetStoppedProcessesRequest$outboundSchema.parse(getStoppedProcessesRequest), ); }