UNPKG

@factset/sdk-factsetglobalprices

Version:

FactSet Global Prices client library for JavaScript

103 lines (90 loc) 1.78 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 }; } /** * FactSet Global Prices API * The FactSet Global Prices API provides end of day market pricing content using cloud and microservices technology, encompassing both pricing as well as corporate actions and events data.</p> * * The version of the OpenAPI document: 1.8.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: "D" * @const */ "D" = "D"; /** * value: "AD" * @const */ "AD" = "AD"; /** * value: "W" * @const */ "W" = "W"; /** * value: "M" * @const */ "M" = "M"; /** * value: "AM" * @const */ "AM" = "AM"; /** * value: "AQ" * @const */ "AQ" = "AQ"; /** * value: "CQ" * @const */ "CQ" = "CQ"; /** * value: "ASA" * @const */ "ASA" = "ASA"; /** * value: "CSA" * @const */ "CSA" = "CSA"; /** * value: "AY" * @const */ "AY" = "AY"; /** * value: "CY" * @const */ "CY" = "CY"; /** * 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;