import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetRoomUserResponse = { /** * The ID of the user */ id?: string | undefined; /** * Timestamp (in milliseconds) at which the user joined */ joinedAt?: number | undefined; /** * The display name of the user */ name?: string | undefined; /** * Whether a user is allowed to publish audio/video tracks */ isPublisher?: boolean | undefined; /** * User defined payload to store for the participant */ metadata?: string | undefined; }; /** @internal */ export declare const GetRoomUserResponse$inboundSchema: z.ZodType; /** @internal */ export type GetRoomUserResponse$Outbound = { id?: string | undefined; joinedAt?: number | undefined; name?: string | undefined; isPublisher: boolean; metadata?: string | undefined; }; /** @internal */ export declare const GetRoomUserResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace GetRoomUserResponse$ { /** @deprecated use `GetRoomUserResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetRoomUserResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetRoomUserResponse$Outbound` instead. */ type Outbound = GetRoomUserResponse$Outbound; } export declare function getRoomUserResponseToJSON(getRoomUserResponse: GetRoomUserResponse): string; export declare function getRoomUserResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getroomuserresponse.d.ts.map