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

com.softwaresandbox.pubgclient.model.player.PlayerRelationships Maven / Gradle / Ivy

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