@factset/sdk-portfolioreportingbatcher
Version:
Portfolio Reporting Batcher client library for JavaScript
61 lines (55 loc) • 1.37 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
/**
* Portfolio Reporting Batcher
* The Portfolio Reporting Batcher (PRB) API allows clients to systematically leverage functionalities of the PRB application.
*
* The version of the OpenAPI document: 1.2.0
* Contact: api@factset.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
/**
* Enum class Frequency.
* @enum {}
* @readonly
*/
class Frequency {
/**
* value: "daily"
* @const
*/
"daily" = "daily";
/**
* value: "monthly"
* @const
*/
"monthly" = "monthly";
/**
* value: "weekly"
* @const
*/
"weekly" = "weekly";
/**
* value: "single"
* @const
*/
"single" = "single";
/**
* Returns a <code>Frequency</code> enum value from a Javascript object name.
* @param {Object} data The plain JavaScript object containing the name of the enum value.
* @return {module:model/Frequency} The enum <code>Frequency</code> value.
*/
static constructFromObject(object) {
return object;
}
}
exports.default = Frequency;