all files / node-csgo-parser/lib/ Sticker.js

100% Statements 5/5
100% Branches 0/0
100% Functions 1/1
100% Lines 5/5
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28                                      947× 947× 947× 947×        
'use strict';
/* jshint node: true */
 
/**
 * @typedef Sticker
 * @type Object
 * @property {String} name I18N name of the sticker
 * @property {String} techName Technical name of the sticker
 * @property {String} defIndex Index/Key of the sticker
 * @property {String} rarity Rarity of this sticker
 */
 
/**
 * Standard return for a Sticker.
 * @class
 */
class Sticker {
	/** @constructor */
	constructor(name, techName, defIndex,rarity){
		this.name = name;
		this.techName = techName;
		this.defIndex = defIndex;
		this.rarity = rarity;
	}
	
}
 
module.exports = Sticker;