com.ibasco.agql.protocols.valve.steam.webapi.pojos.SteamNewsItem 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/26/2016.
*
* @author Rafael Luis Ibasco
*/
public class SteamNewsItem {
@SerializedName("gid")
private String gid;
@SerializedName("title")
private String title;
@SerializedName("url")
private String url;
@SerializedName("is_external_url")
private boolean externalUrl;
@SerializedName("author")
private String author;
@SerializedName("contents")
private String contents;
@SerializedName("feedlabel")
private String feedLabel;
@SerializedName("date")
private int date;
@SerializedName("feedname")
private String feedName;
/**
* Getter for the field gid
.
*
* @return a {@link java.lang.String} object
*/
public String getGid() {
return gid;
}
/**
* Setter for the field gid
.
*
* @param gid
* a {@link java.lang.String} object
*/
public void setGid(String gid) {
this.gid = gid;
}
/**
* Getter for the field title
.
*
* @return a {@link java.lang.String} object
*/
public String getTitle() {
return title;
}
/**
* Setter for the field title
.
*
* @param title
* a {@link java.lang.String} object
*/
public void setTitle(String title) {
this.title = title;
}
/**
* Getter for the field url
.
*
* @return a {@link java.lang.String} object
*/
public String getUrl() {
return url;
}
/**
* Setter for the field url
.
*
* @param url
* a {@link java.lang.String} object
*/
public void setUrl(String url) {
this.url = url;
}
/**
* isExternalUrl.
*
* @return a boolean
*/
public boolean isExternalUrl() {
return externalUrl;
}
/**
* Setter for the field externalUrl
.
*
* @param externalUrl
* a boolean
*/
public void setExternalUrl(boolean externalUrl) {
this.externalUrl = externalUrl;
}
/**
* Getter for the field author
.
*
* @return a {@link java.lang.String} object
*/
public String getAuthor() {
return author;
}
/**
* Setter for the field author
.
*
* @param author
* a {@link java.lang.String} object
*/
public void setAuthor(String author) {
this.author = author;
}
/**
* Getter for the field contents
.
*
* @return a {@link java.lang.String} object
*/
public String getContents() {
return contents;
}
/**
* Setter for the field contents
.
*
* @param contents
* a {@link java.lang.String} object
*/
public void setContents(String contents) {
this.contents = contents;
}
/**
* Getter for the field feedLabel
.
*
* @return a {@link java.lang.String} object
*/
public String getFeedLabel() {
return feedLabel;
}
/**
* Setter for the field feedLabel
.
*
* @param feedLabel
* a {@link java.lang.String} object
*/
public void setFeedLabel(String feedLabel) {
this.feedLabel = feedLabel;
}
/**
* Getter for the field date
.
*
* @return a int
*/
public int getDate() {
return date;
}
/**
* Setter for the field date
.
*
* @param date
* a int
*/
public void setDate(int date) {
this.date = date;
}
/**
* Getter for the field feedName
.
*
* @return a {@link java.lang.String} object
*/
public String getFeedName() {
return feedName;
}
/**
* Setter for the field feedName
.
*
* @param feedName
* a {@link java.lang.String} object
*/
public void setFeedName(String feedName) {
this.feedName = feedName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy