hirezapi.json.SimplePlayer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of HiRezApi-common Show documentation
Show all versions of HiRezApi-common Show documentation
Java-Based API Wrapper for Hi-Rez Studios games.
The newest version!
package hirezapi.json;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.time.Instant;
public class SimplePlayer extends Model {
@JsonProperty("AccountLevel")
private int accountLevel;
@JsonProperty("JoinedDatetime")
private Instant createdAt;
@JsonProperty("LastLoginDatetime")
private Instant lastLogin;
@JsonProperty("Name")
private String name;
}