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