Type alias RoomInfo

RoomInfo: {
    info: {
        app_id: string;
        create_time: string;
        create_user_id: string;
        extension: Record<string, any>;
        id: string | number;
        room_code: string;
        status: string | number;
    };
    init_timestamp: string;
    last_frame: Record<string, any>;
}

Type declaration

  • info: {
        app_id: string;
        create_time: string;
        create_user_id: string;
        extension: Record<string, any>;
        id: string | number;
        room_code: string;
        status: string | number;
    }
    • app_id: string
    • create_time: string
    • create_user_id: string
    • extension: Record<string, any>
    • id: string | number
    • room_code: string
    • status: string | number
  • init_timestamp: string
  • last_frame: Record<string, any>