All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.softwaresandbox.pubgclient.model.match.asset.Asset Maven / Gradle / Ivy

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