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