com.softwaresandbox.pubgclient.model.match.MatchRelationships 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;
import com.google.gson.annotations.SerializedName;
import com.softwaresandbox.pubgclient.model.DataList;
public class MatchRelationships {
@SerializedName("assets")
private DataList assetIds;
@SerializedName("rosters")
private DataList rosterIds;
public DataList getAssetIds() {
return assetIds;
}
public void setAssetIds(DataList assetIds) {
this.assetIds = assetIds;
}
public DataList getRosterIds() {
return rosterIds;
}
public void setRosterIds(DataList rosterIds) {
this.rosterIds = rosterIds;
}
@Override
public String toString() {
return "MatchRelationships{" +
"assetIds=" + assetIds +
", rosterIds=" + rosterIds +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy