UNPKG

@factset/sdk-portfolioreportingbatcher

Version:

Portfolio Reporting Batcher client library for JavaScript

79 lines (70 loc) 1.58 kB
"use strict"; 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.0.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 PrbStatus. * @enum {} * @readonly */ class PrbStatus { /** * value: "failed" * @const */ "failed" = "failed"; /** * value: "pending" * @const */ "pending" = "pending"; /** * value: "running" * @const */ "running" = "running"; /** * value: "soft" * @const */ "soft" = "soft"; /** * value: "stopped" * @const */ "stopped" = "stopped"; /** * value: "success" * @const */ "success" = "success"; /** * value: "warning" * @const */ "warning" = "warning"; /** * Returns a <code>PrbStatus</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/PrbStatus} The enum <code>PrbStatus</code> value. */ static constructFromObject(object) { return object; } } exports.default = PrbStatus;