File: /var/www/fintechfuel/node_modules/pipedrive/dist/model/IconKey.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 IconKey.
* @enum {}
* @readonly
*/
var IconKey = /*#__PURE__*/function () {
function IconKey() {
(0, _classCallCheck2["default"])(this, IconKey);
(0, _defineProperty2["default"])(this, "task", "task");
(0, _defineProperty2["default"])(this, "email", "email");
(0, _defineProperty2["default"])(this, "meeting", "meeting");
(0, _defineProperty2["default"])(this, "deadline", "deadline");
(0, _defineProperty2["default"])(this, "call", "call");
(0, _defineProperty2["default"])(this, "lunch", "lunch");
(0, _defineProperty2["default"])(this, "calendar", "calendar");
(0, _defineProperty2["default"])(this, "downarrow", "downarrow");
(0, _defineProperty2["default"])(this, "document", "document");
(0, _defineProperty2["default"])(this, "smartphone", "smartphone");
(0, _defineProperty2["default"])(this, "camera", "camera");
(0, _defineProperty2["default"])(this, "scissors", "scissors");
(0, _defineProperty2["default"])(this, "cogs", "cogs");
(0, _defineProperty2["default"])(this, "bubble", "bubble");
(0, _defineProperty2["default"])(this, "uparrow", "uparrow");
(0, _defineProperty2["default"])(this, "checkbox", "checkbox");
(0, _defineProperty2["default"])(this, "signpost", "signpost");
(0, _defineProperty2["default"])(this, "shuffle", "shuffle");
(0, _defineProperty2["default"])(this, "addressbook", "addressbook");
(0, _defineProperty2["default"])(this, "linegraph", "linegraph");
(0, _defineProperty2["default"])(this, "picture", "picture");
(0, _defineProperty2["default"])(this, "car", "car");
(0, _defineProperty2["default"])(this, "world", "world");
(0, _defineProperty2["default"])(this, "search", "search");
(0, _defineProperty2["default"])(this, "clip", "clip");
(0, _defineProperty2["default"])(this, "sound", "sound");
(0, _defineProperty2["default"])(this, "brush", "brush");
(0, _defineProperty2["default"])(this, "key", "key");
(0, _defineProperty2["default"])(this, "padlock", "padlock");
(0, _defineProperty2["default"])(this, "pricetag", "pricetag");
(0, _defineProperty2["default"])(this, "suitcase", "suitcase");
(0, _defineProperty2["default"])(this, "finish", "finish");
(0, _defineProperty2["default"])(this, "plane", "plane");
(0, _defineProperty2["default"])(this, "loop", "loop");
(0, _defineProperty2["default"])(this, "wifi", "wifi");
(0, _defineProperty2["default"])(this, "truck", "truck");
(0, _defineProperty2["default"])(this, "cart", "cart");
(0, _defineProperty2["default"])(this, "bulb", "bulb");
(0, _defineProperty2["default"])(this, "bell", "bell");
(0, _defineProperty2["default"])(this, "presentation", "presentation");
}
(0, _createClass2["default"])(IconKey, null, [{
key: "constructFromObject",
value:
/**
* Returns a <code>IconKey</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/IconKey} The enum <code>IconKey</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 IconKey;
}();
exports["default"] = IconKey;