package com.mojang.realmsclient.dto; import com.google.gson.annotations.SerializedName; import java.util.List; import org.jspecify.annotations.Nullable; public record RealmsConfigurationDto( @SerializedName("options") RealmsSlotUpdateDto options, @SerializedName("settings") List settings, @SerializedName("regionSelectionPreference") @Nullable RegionSelectionPreferenceDto regionSelectionPreference, @SerializedName("description") @Nullable RealmsDescriptionDto description ) implements ReflectionBasedSerialization { }