com.ibasco.agql.protocols.valve.steam.webapi.pojos.SteamPlayerOwnedGame 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;
/**
* Created by raffy on 10/27/2016.
*
* @author Rafael Luis Ibasco
*/
public class SteamPlayerOwnedGame {
@SerializedName("appid")
private int appId;
private String name;
@SerializedName("playtime_forever")
private int totalPlaytime;
@SerializedName("img_icon_url")
private String iconImgUrl;
@SerializedName("img_logo_url")
private String logoImgUrl;
@SerializedName("has_community_visible_stats")
private boolean hasCommunityVisibleStats;
/**
* Getter for the field appId
.
*
* @return a int
*/
public int getAppId() {
return appId;
}
/**
* Setter for the field appId
.
*
* @param appId
* a int
*/
public void setAppId(int appId) {
this.appId = appId;
}
/**
* Getter for the field name
.
*
* @return a {@link java.lang.String} object
*/
public String getName() {
return name;
}
/**
* Setter for the field name
.
*
* @param name
* a {@link java.lang.String} object
*/
public void setName(String name) {
this.name = name;
}
/**
* Getter for the field totalPlaytime
.
*
* @return a int
*/
public int getTotalPlaytime() {
return totalPlaytime;
}
/**
* Setter for the field totalPlaytime
.
*
* @param totalPlaytime
* a int
*/
public void setTotalPlaytime(int totalPlaytime) {
this.totalPlaytime = totalPlaytime;
}
/**
* Getter for the field iconImgUrl
.
*
* @return a {@link java.lang.String} object
*/
public String getIconImgUrl() {
return iconImgUrl;
}
/**
* Setter for the field iconImgUrl
.
*
* @param iconImgUrl
* a {@link java.lang.String} object
*/
public void setIconImgUrl(String iconImgUrl) {
this.iconImgUrl = iconImgUrl;
}
/**
* Getter for the field logoImgUrl
.
*
* @return a {@link java.lang.String} object
*/
public String getLogoImgUrl() {
return logoImgUrl;
}
/**
* Setter for the field logoImgUrl
.
*
* @param logoImgUrl
* a {@link java.lang.String} object
*/
public void setLogoImgUrl(String logoImgUrl) {
this.logoImgUrl = logoImgUrl;
}
/**
* isHasCommunityVisibleStats.
*
* @return a boolean
*/
public boolean isHasCommunityVisibleStats() {
return hasCommunityVisibleStats;
}
/**
* Setter for the field hasCommunityVisibleStats
.
*
* @param hasCommunityVisibleStats
* a boolean
*/
public void setHasCommunityVisibleStats(boolean hasCommunityVisibleStats) {
this.hasCommunityVisibleStats = hasCommunityVisibleStats;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy