initi.doc/docfiles/providers/managers/publishers/base/items/attributes/manager.js

32 lines
630 B
JavaScript

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