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