jama-rest-api
Version:
The Jama REST API implemented in Node.JS
12 lines (9 loc) • 318 B
JavaScript
var PicklistOptions = function(_super) {
this._super = _super;
this._baseMethod = 'picklistoptions';
}
PicklistOptions.prototype.get = function(picklistOptionId) {
var path = this._super.buildPath(this._baseMethod, picklistOptionId);
return this._super.get(path);
}
module.exports = PicklistOptions;