32 lines
579 B
JavaScript
32 lines
579 B
JavaScript
|
/**
|
||
|
*
|
||
|
* @group manager
|
||
|
* @class Attributes
|
||
|
* @memberof Publishers.Publisher.Items.Item
|
||
|
*/
|
||
|
var Attributes = function () {
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @public
|
||
|
* @function get
|
||
|
* @memberof Publishers.Publisher.Items.Item.Attributes
|
||
|
* @param _id {v2.integer}
|
||
|
* @returns {tools.promise(PublisherItemAttribute)}
|
||
|
*/
|
||
|
this.get = function (_id) {
|
||
|
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @public
|
||
|
* @function attributes
|
||
|
* @memberof Publishers.Publisher.Items.Item.Attributes
|
||
|
* @returns {v2.list(v2.string)}
|
||
|
*/
|
||
|
this.attributes = function () {}
|
||
|
|
||
|
|
||
|
|
||
|
};
|