cybersource-rest-client
Version:
Node.js SDK for the CyberSource REST API
142 lines (124 loc) • 5.45 kB
JavaScript
/**
* 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'], 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.CyberSource) {
root.CyberSource = {};
}
root.CyberSource.UnderwritingConfigurationOrganizationInformationBusinessInformationAddress = factory(root.CyberSource.ApiClient);
}
}(this, function(ApiClient) {
'use strict';
/**
* The UnderwritingConfigurationOrganizationInformationBusinessInformationAddress model module.
* @module model/UnderwritingConfigurationOrganizationInformationBusinessInformationAddress
* @version 0.0.1
*/
/**
* Constructs a new <code>UnderwritingConfigurationOrganizationInformationBusinessInformationAddress</code>.
* @alias module:model/UnderwritingConfigurationOrganizationInformationBusinessInformationAddress
* @class
* @param country {String} Country where the business is located. Two character country code, ISO 3166-1 alpha-2.
* @param address1 {String} Business street address
* @param locality {String} City of the billing address
* @param administrativeArea {String} Business state (US) or province (Canada, others). Required for US and Canada.
* @param postalCode {String} Business zip code (US) or postal code (Canada). The postal code must consist of 5 to 9 digits. Required for United States and Canada.
*/
var exports = function(country, address1, locality, administrativeArea, postalCode) {
var _this = this;
_this['country'] = country;
_this['address1'] = address1;
_this['locality'] = locality;
_this['administrativeArea'] = administrativeArea;
_this['postalCode'] = postalCode;
};
/**
* Constructs a <code>UnderwritingConfigurationOrganizationInformationBusinessInformationAddress</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/UnderwritingConfigurationOrganizationInformationBusinessInformationAddress} obj Optional instance to populate.
* @return {module:model/UnderwritingConfigurationOrganizationInformationBusinessInformationAddress} The populated <code>UnderwritingConfigurationOrganizationInformationBusinessInformationAddress</code> instance.
*/
exports.constructFromObject = function(data, obj) {
if (data) {
obj = obj || new exports();
if (data.hasOwnProperty('country')) {
obj['country'] = ApiClient.convertToType(data['country'], 'String');
}
if (data.hasOwnProperty('address1')) {
obj['address1'] = ApiClient.convertToType(data['address1'], 'String');
}
if (data.hasOwnProperty('address2')) {
obj['address2'] = ApiClient.convertToType(data['address2'], 'String');
}
if (data.hasOwnProperty('buildingName')) {
obj['buildingName'] = ApiClient.convertToType(data['buildingName'], 'String');
}
if (data.hasOwnProperty('locality')) {
obj['locality'] = ApiClient.convertToType(data['locality'], 'String');
}
if (data.hasOwnProperty('administrativeArea')) {
obj['administrativeArea'] = ApiClient.convertToType(data['administrativeArea'], 'String');
}
if (data.hasOwnProperty('postalCode')) {
obj['postalCode'] = ApiClient.convertToType(data['postalCode'], 'String');
}
}
return obj;
}
/**
* Country where the business is located. Two character country code, ISO 3166-1 alpha-2.
* @member {String} country
*/
exports.prototype['country'] = undefined;
/**
* Business street address
* @member {String} address1
*/
exports.prototype['address1'] = undefined;
/**
* Business street address continued
* @member {String} address2
*/
exports.prototype['address2'] = undefined;
/**
* Building Name
* @member {String} buildingName
*/
exports.prototype['buildingName'] = undefined;
/**
* City of the billing address
* @member {String} locality
*/
exports.prototype['locality'] = undefined;
/**
* Business state (US) or province (Canada, others). Required for US and Canada.
* @member {String} administrativeArea
*/
exports.prototype['administrativeArea'] = undefined;
/**
* Business zip code (US) or postal code (Canada). The postal code must consist of 5 to 9 digits. Required for United States and Canada.
* @member {String} postalCode
*/
exports.prototype['postalCode'] = undefined;
return exports;
}));