com.ibasco.agql.protocols.valve.steam.webapi.pojos.SteamEconSchemaItemQuality 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 org.apache.commons.lang3.builder.ReflectionToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
/**
* SteamEconSchemaItemQuality class.
*
* @author Rafael Luis Ibasco
*/
public class SteamEconSchemaItemQuality {
private int normal;
private int rarity1;
private int rarity2;
private int rarity3;
private int rarity4;
private int vintage;
private int unique;
private int community;
private int developer;
private int selfmade;
private int customized;
private int strange;
private int completed;
private int haunted;
private int collectors;
private int paintkitweapon;
/**
* Getter for the field normal
.
*
* @return a int
*/
public int getNormal() {
return normal;
}
/**
* Setter for the field normal
.
*
* @param normal
* a int
*/
public void setNormal(int normal) {
this.normal = normal;
}
/**
* Getter for the field rarity1
.
*
* @return a int
*/
public int getRarity1() {
return rarity1;
}
/**
* Setter for the field rarity1
.
*
* @param rarity1
* a int
*/
public void setRarity1(int rarity1) {
this.rarity1 = rarity1;
}
/**
* Getter for the field rarity2
.
*
* @return a int
*/
public int getRarity2() {
return rarity2;
}
/**
* Setter for the field rarity2
.
*
* @param rarity2
* a int
*/
public void setRarity2(int rarity2) {
this.rarity2 = rarity2;
}
/**
* Getter for the field rarity3
.
*
* @return a int
*/
public int getRarity3() {
return rarity3;
}
/**
* Setter for the field rarity3
.
*
* @param rarity3
* a int
*/
public void setRarity3(int rarity3) {
this.rarity3 = rarity3;
}
/**
* Getter for the field rarity4
.
*
* @return a int
*/
public int getRarity4() {
return rarity4;
}
/**
* Setter for the field rarity4
.
*
* @param rarity4
* a int
*/
public void setRarity4(int rarity4) {
this.rarity4 = rarity4;
}
/**
* Getter for the field vintage
.
*
* @return a int
*/
public int getVintage() {
return vintage;
}
/**
* Setter for the field vintage
.
*
* @param vintage
* a int
*/
public void setVintage(int vintage) {
this.vintage = vintage;
}
/**
* Getter for the field unique
.
*
* @return a int
*/
public int getUnique() {
return unique;
}
/**
* Setter for the field unique
.
*
* @param unique
* a int
*/
public void setUnique(int unique) {
this.unique = unique;
}
/**
* Getter for the field community
.
*
* @return a int
*/
public int getCommunity() {
return community;
}
/**
* Setter for the field community
.
*
* @param community
* a int
*/
public void setCommunity(int community) {
this.community = community;
}
/**
* Getter for the field developer
.
*
* @return a int
*/
public int getDeveloper() {
return developer;
}
/**
* Setter for the field developer
.
*
* @param developer
* a int
*/
public void setDeveloper(int developer) {
this.developer = developer;
}
/**
* Getter for the field selfmade
.
*
* @return a int
*/
public int getSelfmade() {
return selfmade;
}
/**
* Setter for the field selfmade
.
*
* @param selfmade
* a int
*/
public void setSelfmade(int selfmade) {
this.selfmade = selfmade;
}
/**
* Getter for the field customized
.
*
* @return a int
*/
public int getCustomized() {
return customized;
}
/**
* Setter for the field customized
.
*
* @param customized
* a int
*/
public void setCustomized(int customized) {
this.customized = customized;
}
/**
* Getter for the field strange
.
*
* @return a int
*/
public int getStrange() {
return strange;
}
/**
* Setter for the field strange
.
*
* @param strange
* a int
*/
public void setStrange(int strange) {
this.strange = strange;
}
/**
* Getter for the field completed
.
*
* @return a int
*/
public int getCompleted() {
return completed;
}
/**
* Setter for the field completed
.
*
* @param completed
* a int
*/
public void setCompleted(int completed) {
this.completed = completed;
}
/**
* Getter for the field haunted
.
*
* @return a int
*/
public int getHaunted() {
return haunted;
}
/**
* Setter for the field haunted
.
*
* @param haunted
* a int
*/
public void setHaunted(int haunted) {
this.haunted = haunted;
}
/**
* Getter for the field collectors
.
*
* @return a int
*/
public int getCollectors() {
return collectors;
}
/**
* Setter for the field collectors
.
*
* @param collectors
* a int
*/
public void setCollectors(int collectors) {
this.collectors = collectors;
}
/**
* Getter for the field paintkitweapon
.
*
* @return a int
*/
public int getPaintkitweapon() {
return paintkitweapon;
}
/**
* Setter for the field paintkitweapon
.
*
* @param paintkitweapon
* a int
*/
public void setPaintkitweapon(int paintkitweapon) {
this.paintkitweapon = paintkitweapon;
}
/** {@inheritDoc} */
@Override
public String toString() {
return ReflectionToStringBuilder.toString(this, ToStringStyle.NO_CLASS_NAME_STYLE);
}
}