com.ibasco.agql.protocols.valve.steam.webapi.pojos.SteamEconItemsSMTab 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 com.google.gson.annotations.SerializedName;
import org.apache.commons.lang3.builder.ReflectionToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import java.util.ArrayList;
import java.util.List;
/**
* SteamEconItemsSMTab class.
*
* @author Rafael Luis Ibasco
*/
public class SteamEconItemsSMTab {
private String label;
private String id;
@SerializedName("parent_id")
private int parentId;
@SerializedName("use_large_cells")
private boolean useLargeCells;
@SerializedName("default")
private boolean defaultTab;
private List children = new ArrayList<>();
private boolean home;
@SerializedName("dropdown_prefab_id")
private long dropdownPrefabId;
@SerializedName("tab_image_override_name")
private String tabImageOverrideName;
/**
* Getter for the field tabImageOverrideName
.
*
* @return a {@link java.lang.String} object
*/
public String getTabImageOverrideName() {
return tabImageOverrideName;
}
/**
* Setter for the field tabImageOverrideName
.
*
* @param tabImageOverrideName
* a {@link java.lang.String} object
*/
public void setTabImageOverrideName(String tabImageOverrideName) {
this.tabImageOverrideName = tabImageOverrideName;
}
/**
* Getter for the field label
.
*
* @return a {@link java.lang.String} object
*/
public String getLabel() {
return label;
}
/**
* Setter for the field label
.
*
* @param label
* a {@link java.lang.String} object
*/
public void setLabel(String label) {
this.label = label;
}
/**
* Getter for the field id
.
*
* @return a {@link java.lang.String} object
*/
public String getId() {
return id;
}
/**
* Setter for the field id
.
*
* @param id
* a {@link java.lang.String} object
*/
public void setId(String id) {
this.id = id;
}
/**
* Getter for the field parentId
.
*
* @return a int
*/
public int getParentId() {
return parentId;
}
/**
* Setter for the field parentId
.
*
* @param parentId
* a int
*/
public void setParentId(int parentId) {
this.parentId = parentId;
}
/**
* useLargeCells.
*
* @return a boolean
*/
public boolean useLargeCells() {
return useLargeCells;
}
/**
* Setter for the field useLargeCells
.
*
* @param useLargeCells
* a boolean
*/
public void setUseLargeCells(boolean useLargeCells) {
this.useLargeCells = useLargeCells;
}
/**
* isDefaultTab.
*
* @return a boolean
*/
public boolean isDefaultTab() {
return defaultTab;
}
/**
* Setter for the field defaultTab
.
*
* @param defaultTab
* a boolean
*/
public void setDefaultTab(boolean defaultTab) {
this.defaultTab = defaultTab;
}
/**
* Getter for the field children
.
*
* @return a {@link java.util.List} object
*/
public List getChildren() {
return children;
}
/**
* Setter for the field children
.
*
* @param children
* a {@link java.util.List} object
*/
public void setChildren(List children) {
this.children = children;
}
/**
* isHome.
*
* @return a boolean
*/
public boolean isHome() {
return home;
}
/**
* Setter for the field home
.
*
* @param home
* a boolean
*/
public void setHome(boolean home) {
this.home = home;
}
/**
* Getter for the field dropdownPrefabId
.
*
* @return a long
*/
public long getDropdownPrefabId() {
return dropdownPrefabId;
}
/**
* Setter for the field dropdownPrefabId
.
*
* @param dropdownPrefabId
* a long
*/
public void setDropdownPrefabId(long dropdownPrefabId) {
this.dropdownPrefabId = dropdownPrefabId;
}
/** {@inheritDoc} */
@Override
public String toString() {
return ReflectionToStringBuilder.toString(this, ToStringStyle.NO_CLASS_NAME_STYLE);
}
}