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