com.softwaresandbox.pubgclient.model.match.participant.Participant 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.match.participant;
import com.google.gson.annotations.SerializedName;
import com.softwaresandbox.pubgclient.model.match.ParticipantRosterAsset;
public class Participant implements ParticipantRosterAsset {
private String id;
@SerializedName("attributes")
private ParticipantAttributes participantAttributes;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public ParticipantAttributes getParticipantAttributes() {
return participantAttributes;
}
public void setParticipantAttributes(ParticipantAttributes participantAttributes) {
this.participantAttributes = participantAttributes;
}
@Override
public String toString() {
return "Participant{" +
"id='" + id + '\'' +
", participantAttributes=" + participantAttributes +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy