regionregionRegionMetadata?// Get the region metadata from the Realtime component
RegionMetadata? regionInfo = realtime.region;
// Check if region info is available and use it
if (regionInfo.HasValue) {
Debug.Log($"Connected to region: {regionInfo.Value}");
}