32 lines
587 B
JavaScript
32 lines
587 B
JavaScript
|
/** @typedef {Publishers.Publisher.Items.Item} PublisherItem */
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @group manager
|
||
|
* @class Item
|
||
|
* @memberof Publishers.Publisher.Items
|
||
|
*/
|
||
|
var Item = function () {
|
||
|
/**
|
||
|
*
|
||
|
* @function id
|
||
|
* @public
|
||
|
* @memberof Publishers.Publisher.Items.Item
|
||
|
* @type {v2.integer}
|
||
|
*/
|
||
|
this.id = function () {
|
||
|
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @public
|
||
|
* @function get
|
||
|
* @memberof Publishers.Publisher.Items.Item
|
||
|
* @param _index {v2.integer}
|
||
|
* @returns {tools.promise(PublisherItemAttribute)}
|
||
|
*/
|
||
|
this.get = function (_index) {
|
||
|
|
||
|
};
|
||
|
};
|