-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dc7158e
commit 8c5d194
Showing
22 changed files
with
260 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# CloudmersiveVirusApiClient.AdditionalAdvancedScanInformation | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**containsJSON** | **Boolean** | True if the input file contains JSON data, false otherwise; this is not a threat signal | [optional] | ||
**containsXML** | **Boolean** | True if the input file contains XML data, false otherwise; this is not a threat signal | [optional] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
|
||
/** | ||
* @module ApiClient | ||
* @version 1.2.4 | ||
* @version 1.2.5 | ||
*/ | ||
|
||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
/** | ||
* virusapi | ||
* The Cloudmersive Virus Scan API lets you scan files and content for viruses and identify security issues with content. | ||
* | ||
* OpenAPI spec version: v1 | ||
* | ||
* NOTE: This class is auto generated by the swagger code generator program. | ||
* /~https://github.com/swagger-api/swagger-codegen.git | ||
* | ||
* Swagger Codegen version: 2.3.1 | ||
* | ||
* Do not edit the class manually. | ||
* | ||
*/ | ||
|
||
(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.CloudmersiveVirusApiClient) { | ||
root.CloudmersiveVirusApiClient = {}; | ||
} | ||
root.CloudmersiveVirusApiClient.AdditionalAdvancedScanInformation = factory(root.CloudmersiveVirusApiClient.ApiClient); | ||
} | ||
}(this, function(ApiClient) { | ||
'use strict'; | ||
|
||
|
||
|
||
|
||
/** | ||
* The AdditionalAdvancedScanInformation model module. | ||
* @module model/AdditionalAdvancedScanInformation | ||
* @version 1.2.5 | ||
*/ | ||
|
||
/** | ||
* Constructs a new <code>AdditionalAdvancedScanInformation</code>. | ||
* Additional non-threat content verification information | ||
* @alias module:model/AdditionalAdvancedScanInformation | ||
* @class | ||
*/ | ||
var exports = function() { | ||
var _this = this; | ||
|
||
|
||
|
||
}; | ||
|
||
/** | ||
* Constructs a <code>AdditionalAdvancedScanInformation</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/AdditionalAdvancedScanInformation} obj Optional instance to populate. | ||
* @return {module:model/AdditionalAdvancedScanInformation} The populated <code>AdditionalAdvancedScanInformation</code> instance. | ||
*/ | ||
exports.constructFromObject = function(data, obj) { | ||
if (data) { | ||
obj = obj || new exports(); | ||
|
||
if (data.hasOwnProperty('ContainsJSON')) { | ||
obj['ContainsJSON'] = ApiClient.convertToType(data['ContainsJSON'], 'Boolean'); | ||
} | ||
if (data.hasOwnProperty('ContainsXML')) { | ||
obj['ContainsXML'] = ApiClient.convertToType(data['ContainsXML'], 'Boolean'); | ||
} | ||
} | ||
return obj; | ||
} | ||
|
||
/** | ||
* True if the input file contains JSON data, false otherwise; this is not a threat signal | ||
* @member {Boolean} ContainsJSON | ||
*/ | ||
exports.prototype['ContainsJSON'] = undefined; | ||
/** | ||
* True if the input file contains XML data, false otherwise; this is not a threat signal | ||
* @member {Boolean} ContainsXML | ||
*/ | ||
exports.prototype['ContainsXML'] = undefined; | ||
|
||
|
||
|
||
return exports; | ||
})); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.