import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Metadata on an allocated instance of a room. */ export type RoomAllocation = { unscheduledAt: Date | null; scheduledAt: Date; /** * System generated unique identifier to a runtime instance of your game server. */ processId: string; /** * System generated unique identifier to an allocated instance of a room. */ roomAllocationId: string; }; /** @internal */ export declare const RoomAllocation$inboundSchema: z.ZodType; export declare function roomAllocationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=roomallocation.d.ts.map