File: /var/www/fintechfuel/node_modules/pipedrive/dist/model/DealProductUnitDuration.js
"use strict";
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
/**
* Pipedrive API v1
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.0.0
*
*
* 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 DealProductUnitDuration.
* @enum {}
* @readonly
*/
var DealProductUnitDuration = /*#__PURE__*/function () {
function DealProductUnitDuration() {
(0, _classCallCheck2["default"])(this, DealProductUnitDuration);
(0, _defineProperty2["default"])(this, "hourly", "hourly");
(0, _defineProperty2["default"])(this, "daily", "daily");
(0, _defineProperty2["default"])(this, "weekly", "weekly");
(0, _defineProperty2["default"])(this, "monthly", "monthly");
(0, _defineProperty2["default"])(this, "yearly", "yearly");
}
(0, _createClass2["default"])(DealProductUnitDuration, null, [{
key: "constructFromObject",
value:
/**
* Returns a <code>DealProductUnitDuration</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/DealProductUnitDuration} The enum <code>DealProductUnitDuration</code> value.
*/
function constructFromObject(object) {
return object;
}
/**
* Initializes the fields of this object.
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
* Only for internal use.
*/
}, {
key: "initialize",
value: function initialize(obj) {}
}]);
return DealProductUnitDuration;
}();
exports["default"] = DealProductUnitDuration;