UNPKG

@factset/sdk-portfolioreportingbatcher

Version:

Portfolio Reporting Batcher client library for JavaScript

67 lines (60 loc) 1.44 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 Status. * @enum {} * @readonly */ class Status { /** * value: "cancelled" * @const */ "cancelled" = "cancelled"; /** * value: "created" * @const */ "created" = "created"; /** * value: "executing" * @const */ "executing" = "executing"; /** * value: "failed" * @const */ "failed" = "failed"; /** * value: "queued" * @const */ "queued" = "queued"; /** * Returns a <code>Status</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/Status} The enum <code>Status</code> value. */ static constructFromObject(object) { return object; } } exports.default = Status;