2019-06-19 12:21:58 +00:00
|
|
|
/** @typedef {Publishers.PublisherManager.Publisher.Items.Item.Attributes.Attribute} PublisherItemAttribute */
|
2018-09-25 12:14:18 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @group manager
|
|
|
|
* @class Attribute
|
2019-06-19 12:21:58 +00:00
|
|
|
* @memberof Publishers.PublisherManager.Publisher.Items.Item.Attributes
|
2018-09-25 12:14:18 +00:00
|
|
|
*/
|
|
|
|
var Attribute = function () {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @name s_size_change
|
|
|
|
* @public
|
2019-06-19 12:21:58 +00:00
|
|
|
* @memberof Publishers.PublisherManager.Publisher.Items.Item.Attributes.Attribute
|
2018-09-25 12:14:18 +00:00
|
|
|
* @type {number}
|
|
|
|
*/
|
|
|
|
this.s_size_change = -1;
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @public
|
|
|
|
* @function name
|
2019-06-19 12:21:58 +00:00
|
|
|
* @memberof Publishers.PublisherManager.Publisher.Items.Item.Attributes.Attribute
|
2018-09-25 12:14:18 +00:00
|
|
|
* @returns {v2.string}
|
|
|
|
*/
|
|
|
|
this.name = function () {
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @public
|
|
|
|
* @function value
|
2019-06-19 12:21:58 +00:00
|
|
|
* @memberof Publishers.PublisherManager.Publisher.Items.Item.Attributes.Attribute
|
2018-09-25 12:14:18 +00:00
|
|
|
* @returns {v2}
|
|
|
|
*/
|
|
|
|
this.value = function () {
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @public
|
|
|
|
* @function type
|
2019-06-19 12:21:58 +00:00
|
|
|
* @memberof Publishers.PublisherManager.Publisher.Items.Item.Attributes.Attribute
|
2018-09-25 12:14:18 +00:00
|
|
|
* @returns {v2.type}
|
|
|
|
*/
|
|
|
|
this.type = function () {
|
|
|
|
|
|
|
|
}
|
|
|
|
};
|