io.github.vitalij3.JCA.models.labels.GeneralLabels Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Java-Clash-API Show documentation
Show all versions of Java-Clash-API Show documentation
Provides an opportunity to use the API functionality of the Clash Of Clans game
The newest version!
package io.github.vitalij3.JCA.models.labels;
import io.github.vitalij3.JCA.models.IconUrls;
import java.util.ArrayList;
import java.util.List;
public class GeneralLabels {
public static class Item {
public String name = "none";
public long id = 0L;
public IconUrls iconUrls = new IconUrls();
}
public List- items = new ArrayList<>();
}