UNPKG

cybersource-rest-client

Version:

Node.js SDK for the CyberSource REST API

114 lines (93 loc) 5.29 kB
/** * CyberSource Merged Spec * All CyberSource API specs merged together. These are available at https://developer.cybersource.com/api/reference/api-reference.html * * OpenAPI spec version: 0.0.1 * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * * Swagger Codegen version: 2.4.38 * * Do not edit the class manually. * */ (function(root, factory) { if (typeof define === 'function' && define.amd) { // AMD. Register as an anonymous module. define(['ApiClient', 'model/Riskv1addressverificationsBuyerInformation', 'model/Riskv1exportcomplianceinquiriesDeviceInformation', 'model/Riskv1exportcomplianceinquiriesExportComplianceInformation', 'model/Riskv1exportcomplianceinquiriesOrderInformation', 'model/Riskv1liststypeentriesClientReferenceInformation'], factory); } else if (typeof module === 'object' && module.exports) { // CommonJS-like environments that support module.exports, like Node. module.exports = factory(require('../ApiClient'), require('./Riskv1addressverificationsBuyerInformation'), require('./Riskv1exportcomplianceinquiriesDeviceInformation'), require('./Riskv1exportcomplianceinquiriesExportComplianceInformation'), require('./Riskv1exportcomplianceinquiriesOrderInformation'), require('./Riskv1liststypeentriesClientReferenceInformation')); } else { // Browser globals (root is window) if (!root.CyberSource) { root.CyberSource = {}; } root.CyberSource.ValidateExportComplianceRequest = factory(root.CyberSource.ApiClient, root.CyberSource.Riskv1addressverificationsBuyerInformation, root.CyberSource.Riskv1exportcomplianceinquiriesDeviceInformation, root.CyberSource.Riskv1exportcomplianceinquiriesExportComplianceInformation, root.CyberSource.Riskv1exportcomplianceinquiriesOrderInformation, root.CyberSource.Riskv1liststypeentriesClientReferenceInformation); } }(this, function(ApiClient, Riskv1addressverificationsBuyerInformation, Riskv1exportcomplianceinquiriesDeviceInformation, Riskv1exportcomplianceinquiriesExportComplianceInformation, Riskv1exportcomplianceinquiriesOrderInformation, Riskv1liststypeentriesClientReferenceInformation) { 'use strict'; /** * The ValidateExportComplianceRequest model module. * @module model/ValidateExportComplianceRequest * @version 0.0.1 */ /** * Constructs a new <code>ValidateExportComplianceRequest</code>. * @alias module:model/ValidateExportComplianceRequest * @class */ var exports = function() { var _this = this; }; /** * Constructs a <code>ValidateExportComplianceRequest</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/ValidateExportComplianceRequest} obj Optional instance to populate. * @return {module:model/ValidateExportComplianceRequest} The populated <code>ValidateExportComplianceRequest</code> instance. */ exports.constructFromObject = function(data, obj) { if (data) { obj = obj || new exports(); if (data.hasOwnProperty('clientReferenceInformation')) { obj['clientReferenceInformation'] = Riskv1liststypeentriesClientReferenceInformation.constructFromObject(data['clientReferenceInformation']); } if (data.hasOwnProperty('orderInformation')) { obj['orderInformation'] = Riskv1exportcomplianceinquiriesOrderInformation.constructFromObject(data['orderInformation']); } if (data.hasOwnProperty('buyerInformation')) { obj['buyerInformation'] = Riskv1addressverificationsBuyerInformation.constructFromObject(data['buyerInformation']); } if (data.hasOwnProperty('deviceInformation')) { obj['deviceInformation'] = Riskv1exportcomplianceinquiriesDeviceInformation.constructFromObject(data['deviceInformation']); } if (data.hasOwnProperty('exportComplianceInformation')) { obj['exportComplianceInformation'] = Riskv1exportcomplianceinquiriesExportComplianceInformation.constructFromObject(data['exportComplianceInformation']); } } return obj; } /** * @member {module:model/Riskv1liststypeentriesClientReferenceInformation} clientReferenceInformation */ exports.prototype['clientReferenceInformation'] = undefined; /** * @member {module:model/Riskv1exportcomplianceinquiriesOrderInformation} orderInformation */ exports.prototype['orderInformation'] = undefined; /** * @member {module:model/Riskv1addressverificationsBuyerInformation} buyerInformation */ exports.prototype['buyerInformation'] = undefined; /** * @member {module:model/Riskv1exportcomplianceinquiriesDeviceInformation} deviceInformation */ exports.prototype['deviceInformation'] = undefined; /** * @member {module:model/Riskv1exportcomplianceinquiriesExportComplianceInformation} exportComplianceInformation */ exports.prototype['exportComplianceInformation'] = undefined; return exports; }));