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