package com.mojang.realmsclient.dto; import com.google.gson.annotations.SerializedName; import java.util.Set; public record RealmsWorldResetDto( @SerializedName("seed") String seed, @SerializedName("worldTemplateId") long worldTemplateId, @SerializedName("levelType") int levelType, @SerializedName("generateStructures") boolean generateStructures, @SerializedName("experiments") Set experiments ) implements ReflectionBasedSerialization { }