cloud-elements-zohocrm
Advanced tools
| # Zohocrm.Pong | ||
| ## Properties | ||
| Name | Type | Description | Notes | ||
| ------------ | ------------- | ------------- | ------------- | ||
| **id** | **Number** | Id of the ping API | [optional] | ||
| **status** | **String** | Status of the ping API | [optional] | ||
| (function(root, factory) { | ||
| if (typeof define === 'function' && define.amd) { | ||
| // AMD. Register as an anonymous module. | ||
| define(['../ApiClient'], factory); | ||
| } else if (typeof module === 'object' && module.exports) { | ||
| // CommonJS-like environments that support module.exports, like Node. | ||
| module.exports = factory(require('../ApiClient')); | ||
| } else { | ||
| // Browser globals (root is window) | ||
| if (!root.Zohocrm) { | ||
| root.Zohocrm = {}; | ||
| } | ||
| root.Zohocrm.Pong = factory(root.Zohocrm.ApiClient); | ||
| } | ||
| }(this, function(ApiClient) { | ||
| 'use strict'; | ||
| /** | ||
| * The Pong model module. | ||
| * @module model/Pong | ||
| * @version api-v2 | ||
| */ | ||
| /** | ||
| * Constructs a new <code>Pong</code>. | ||
| * Response of ping API. | ||
| * @alias module:model/Pong | ||
| * @class | ||
| */ | ||
| var exports = function() { | ||
| }; | ||
| /** | ||
| * Constructs a <code>Pong</code> from a plain JavaScript object, optionally creating a new instance. | ||
| * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not. | ||
| * @param {Object} data The plain JavaScript object bearing properties of interest. | ||
| * @param {module:model/Pong} obj Optional instance to populate. | ||
| * @return {module:model/Pong} The populated <code>Pong</code> instance. | ||
| */ | ||
| exports.constructFromObject = function(data, obj) { | ||
| if (data) { | ||
| obj = obj || new exports(); | ||
| if (data.hasOwnProperty('id')) { | ||
| obj['id'] = ApiClient.convertToType(data['id'], 'Number'); | ||
| } | ||
| if (data.hasOwnProperty('status')) { | ||
| obj['status'] = ApiClient.convertToType(data['status'], 'String'); | ||
| } | ||
| } | ||
| return obj; | ||
| } | ||
| /** | ||
| * Id of the ping API | ||
| * @member {Number} id | ||
| */ | ||
| exports.prototype['id'] = undefined; | ||
| /** | ||
| * Status of the ping API | ||
| * @member {String} status | ||
| */ | ||
| exports.prototype['status'] = undefined; | ||
| return exports; | ||
| })); |
+2
-2
| { | ||
| "name": "cloud-elements-zohocrm", | ||
| "version": "0.1.4", | ||
| "description": "Client library of the Cloud Elements Zoho CRM element.", | ||
| "version": "0.1.5", | ||
| "description": "Client library of Cloud Elements Zoho CRM element.", | ||
| "main": "src/index.js", | ||
@@ -6,0 +6,0 @@ "scripts": { |
+2
-1
@@ -8,3 +8,3 @@ # zohocrm | ||
| - Package version: api-v2 | ||
| - Build date: 2016-04-26T16:48:37.648-06:00 | ||
| - Build date: 2016-04-26T16:55:00.487-06:00 | ||
| - Build package: class io.swagger.codegen.languages.JavascriptClientCodegen | ||
@@ -169,2 +169,3 @@ | ||
| - [Zohocrm.Opportunity](docs/Opportunity.md) | ||
| - [Zohocrm.Pong](docs/Pong.md) | ||
| - [Zohocrm.Product](docs/Product.md) | ||
@@ -171,0 +172,0 @@ - [Zohocrm.Tasks](docs/Tasks.md) |
+8
-3
| (function(factory) { | ||
| if (typeof define === 'function' && define.amd) { | ||
| // AMD. Register as an anonymous module. | ||
| define(['./ApiClient', './model/Account', './model/BulkLoad', './model/BulkQuery', './model/BulkStatus', './model/Calls', './model/Campaign', './model/Contact', './model/Events', './model/Lead', './model/Notes', './model/NotesPOST', './model/Opportunity', './model/Product', './model/Tasks', './model/User', './api/ZohocrmApi'], factory); | ||
| define(['./ApiClient', './model/Account', './model/BulkLoad', './model/BulkQuery', './model/BulkStatus', './model/Calls', './model/Campaign', './model/Contact', './model/Events', './model/Lead', './model/Notes', './model/NotesPOST', './model/Opportunity', './model/Pong', './model/Product', './model/Tasks', './model/User', './api/ZohocrmApi'], factory); | ||
| } else if (typeof module === 'object' && module.exports) { | ||
| // CommonJS-like environments that support module.exports, like Node. | ||
| module.exports = factory(require('./ApiClient'), require('./model/Account'), require('./model/BulkLoad'), require('./model/BulkQuery'), require('./model/BulkStatus'), require('./model/Calls'), require('./model/Campaign'), require('./model/Contact'), require('./model/Events'), require('./model/Lead'), require('./model/Notes'), require('./model/NotesPOST'), require('./model/Opportunity'), require('./model/Product'), require('./model/Tasks'), require('./model/User'), require('./api/ZohocrmApi')); | ||
| module.exports = factory(require('./ApiClient'), require('./model/Account'), require('./model/BulkLoad'), require('./model/BulkQuery'), require('./model/BulkStatus'), require('./model/Calls'), require('./model/Campaign'), require('./model/Contact'), require('./model/Events'), require('./model/Lead'), require('./model/Notes'), require('./model/NotesPOST'), require('./model/Opportunity'), require('./model/Pong'), require('./model/Product'), require('./model/Tasks'), require('./model/User'), require('./api/ZohocrmApi')); | ||
| } | ||
| }(function(ApiClient, Account, BulkLoad, BulkQuery, BulkStatus, Calls, Campaign, Contact, Events, Lead, Notes, NotesPOST, Opportunity, Product, Tasks, User, ZohocrmApi) { | ||
| }(function(ApiClient, Account, BulkLoad, BulkQuery, BulkStatus, Calls, Campaign, Contact, Events, Lead, Notes, NotesPOST, Opportunity, Pong, Product, Tasks, User, ZohocrmApi) { | ||
| 'use strict'; | ||
@@ -110,2 +110,7 @@ | ||
| /** | ||
| * The Pong model constructor. | ||
| * @property {module:model/Pong} | ||
| */ | ||
| Pong: Pong, | ||
| /** | ||
| * The Product model constructor. | ||
@@ -112,0 +117,0 @@ * @property {module:model/Product} |
AI-detected potential code anomaly
Supply chain riskAI has identified unusual behaviors that may pose a security risk.
AI-detected potential code anomaly
Supply chain riskAI has identified unusual behaviors that may pose a security risk.
459437
0.51%39
5.41%6682
0.98%178
0.56%