dev.piste.api.val4j.apis.officer.models.LevelBorder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of val4j Show documentation
Show all versions of val4j Show documentation
A Java wrapper for every API associated with VALORANT
package dev.piste.api.val4j.apis.officer.models;
import com.google.gson.annotations.SerializedName;
/**
* @author Piste (GitHub)
*/
@SuppressWarnings("unused")
public class LevelBorder {
@SerializedName("uuid")
private String uuid;
@SerializedName("startingLevel")
private int startingLevel;
@SerializedName("levelNumberAppearance")
private String iconUrl;
@SerializedName("smallPlayerCardAppearance")
private String smallPlayerCardIconUrl;
@SerializedName("assetPath")
private String assetPath;
public String getUuid() {
return uuid;
}
public int getStartingLevel() {
return startingLevel;
}
public String getIconUrl() {
return iconUrl;
}
public String getSmallPlayerCardIconUrl() {
return smallPlayerCardIconUrl;
}
public String getAssetPath() {
return assetPath;
}
}