com.ibasco.agql.protocols.valve.steam.webapi.pojos.SteamPlayerStats Maven / Gradle / Ivy
/*
* Copyright (c) 2022 Asynchronous Game Query Library
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.ibasco.agql.protocols.valve.steam.webapi.pojos;
import java.util.ArrayList;
import java.util.List;
/**
* Created by raffy on 10/27/2016.
*
* @author Rafael Luis Ibasco
*/
public class SteamPlayerStats {
private String steamId;
private String gameName;
private List achievements = new ArrayList<>();
private List> stats = new ArrayList<>();
/**
* Getter for the field steamId
.
*
* @return a {@link java.lang.String} object
*/
public String getSteamId() {
return steamId;
}
/**
* Setter for the field steamId
.
*
* @param steamId
* a {@link java.lang.String} object
*/
public void setSteamId(String steamId) {
this.steamId = steamId;
}
/**
* Getter for the field gameName
.
*
* @return a {@link java.lang.String} object
*/
public String getGameName() {
return gameName;
}
/**
* Setter for the field gameName
.
*
* @param gameName
* a {@link java.lang.String} object
*/
public void setGameName(String gameName) {
this.gameName = gameName;
}
/**
* Getter for the field achievements
.
*
* @return a {@link java.util.List} object
*/
public List getAchievements() {
return achievements;
}
/**
* Setter for the field achievements
.
*
* @param achievements
* a {@link java.util.List} object
*/
public void setAchievements(List achievements) {
this.achievements = achievements;
}
/**
* Getter for the field stats
.
*
* @return a {@link java.util.List} object
*/
public List> getStats() {
return stats;
}
/**
* Setter for the field stats
.
*
* @param stats
* a {@link java.util.List} object
*/
public void setStats(List> stats) {
this.stats = stats;
}
}