com.ibasco.agql.protocols.valve.steam.webapi.pojos.SteamPlayerBadge Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of agql-steam-webapi Show documentation
Show all versions of agql-steam-webapi Show documentation
An implementation for the Steam Web API Interfaces
/*
* 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 com.google.gson.annotations.SerializedName;
/**
* SteamPlayerBadge class.
*
* @author Rafael Luis Ibasco
*/
public class SteamPlayerBadge {
@SerializedName("badgeid")
private int badgeId;
private int level;
@SerializedName("completion_time")
private int completionTime;
private int xp;
private int scarcity;
/**
* Getter for the field badgeId
.
*
* @return a int
*/
public int getBadgeId() {
return badgeId;
}
/**
* Setter for the field badgeId
.
*
* @param badgeId
* a int
*/
public void setBadgeId(int badgeId) {
this.badgeId = badgeId;
}
/**
* Getter for the field level
.
*
* @return a int
*/
public int getLevel() {
return level;
}
/**
* Setter for the field level
.
*
* @param level
* a int
*/
public void setLevel(int level) {
this.level = level;
}
/**
* Getter for the field completionTime
.
*
* @return a int
*/
public int getCompletionTime() {
return completionTime;
}
/**
* Setter for the field completionTime
.
*
* @param completionTime
* a int
*/
public void setCompletionTime(int completionTime) {
this.completionTime = completionTime;
}
/**
* Getter for the field xp
.
*
* @return a int
*/
public int getXp() {
return xp;
}
/**
* Setter for the field xp
.
*
* @param xp
* a int
*/
public void setXp(int xp) {
this.xp = xp;
}
/**
* Getter for the field scarcity
.
*
* @return a int
*/
public int getScarcity() {
return scarcity;
}
/**
* Setter for the field scarcity
.
*
* @param scarcity
* a int
*/
public void setScarcity(int scarcity) {
this.scarcity = scarcity;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy