com.softwaresandbox.pubgclient.model.player.PlayerRelationships Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pubg-api-client Show documentation
Show all versions of pubg-api-client Show documentation
Java library to interface with the PUBG developer API.
The newest version!
package com.softwaresandbox.pubgclient.model.player;
import com.google.gson.annotations.SerializedName;
import com.softwaresandbox.pubgclient.model.DataList;
public class PlayerRelationships {
// TODO find a way to retrieve matchIds as a String here without the intermediate object
@SerializedName("matches")
private DataList matchIds;
public DataList getMatchIds() {
return matchIds;
}
public void setMatchIds(DataList matchIds) {
this.matchIds = matchIds;
}
@Override
public String toString() {
return "PlayerRelationships{" +
"matchIds=" + matchIds +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy