Compare commits
No commits in common. "3b8db03f08f91375a418e1d1e446a7b9e09f0892" and "b06045ed3ec0dc859f2202a2f2ed74c3884d5351" have entirely different histories.
3b8db03f08
...
b06045ed3e
|
|
@ -64,12 +64,8 @@ import { MultiValuedAttribute } from "./model/MultiValuedAttribute";
|
||||||
import { OfferAvailability } from "./model/OfferAvailability";
|
import { OfferAvailability } from "./model/OfferAvailability";
|
||||||
import { OfferCondition } from "./model/OfferCondition";
|
import { OfferCondition } from "./model/OfferCondition";
|
||||||
import { OfferConditionNote } from "./model/OfferConditionNote";
|
import { OfferConditionNote } from "./model/OfferConditionNote";
|
||||||
import { OfferDeliveryInfo } from "./model/OfferDeliveryInfo";
|
|
||||||
import { OfferCount } from "./model/OfferCount";
|
import { OfferCount } from "./model/OfferCount";
|
||||||
import { OfferMerchantInfo } from "./model/OfferMerchantInfo";
|
|
||||||
import { OfferLoyaltyPoints } from "./model/OfferLoyaltyPoints";
|
|
||||||
import { OfferPrice } from "./model/OfferPrice";
|
import { OfferPrice } from "./model/OfferPrice";
|
||||||
import { OfferProgramEligibility } from "./model/OfferProgramEligibility";
|
|
||||||
import { OfferSavings } from "./model/OfferSavings";
|
import { OfferSavings } from "./model/OfferSavings";
|
||||||
import { OfferShippingCharge } from "./model/OfferShippingCharge";
|
import { OfferShippingCharge } from "./model/OfferShippingCharge";
|
||||||
import { OfferSubCondition } from "./model/OfferSubCondition";
|
import { OfferSubCondition } from "./model/OfferSubCondition";
|
||||||
|
|
|
||||||
|
|
@ -15,43 +15,51 @@
|
||||||
* permissions and limitations under the License.
|
* permissions and limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ProductAdvertisingAPI
|
* ProductAdvertisingAPI
|
||||||
* https://webservices.amazon.com/paapi5/documentation/index.html
|
* https://webservices.amazon.com/paapi5/documentation/index.html
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { ApiClient } from "../ApiClient";
|
(function(root, factory) {
|
||||||
import { OfferShippingCharge } from "./OfferShippingCharge";
|
if (typeof define === 'function' && define.amd) {
|
||||||
|
// AMD. Register as an anonymous module.
|
||||||
|
define(['ApiClient', 'model/OfferShippingCharge'], factory);
|
||||||
|
} else if (typeof module === 'object' && module.exports) {
|
||||||
|
// CommonJS-like environments that support module.exports, like Node.
|
||||||
|
module.exports = factory(require('../ApiClient'), require('./OfferShippingCharge'));
|
||||||
|
} else {
|
||||||
|
// Browser globals (root is window)
|
||||||
|
if (!root.ProductAdvertisingAPIv1) {
|
||||||
|
root.ProductAdvertisingAPIv1 = {};
|
||||||
|
}
|
||||||
|
root.ProductAdvertisingAPIv1.OfferDeliveryInfo = factory(root.ProductAdvertisingAPIv1.ApiClient, root.ProductAdvertisingAPIv1.OfferShippingCharge);
|
||||||
|
}
|
||||||
|
}(this, function(ApiClient, OfferShippingCharge) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
/**
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
* The OfferDeliveryInfo model module.
|
* The OfferDeliveryInfo model module.
|
||||||
* @module model/OfferDeliveryInfo
|
* @module model/OfferDeliveryInfo
|
||||||
* @version 1.0.0
|
* @version 1.0.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a new <code>OfferDeliveryInfo</code>.
|
* Constructs a new <code>OfferDeliveryInfo</code>.
|
||||||
* @alias module:model/OfferDeliveryInfo
|
* @alias module:model/OfferDeliveryInfo
|
||||||
* @class
|
* @class
|
||||||
*/
|
*/
|
||||||
export class OfferDeliveryInfo {
|
var exports = function() {
|
||||||
/**
|
var _this = this;
|
||||||
* @member {Boolean} IsAmazonFulfilled
|
|
||||||
*/
|
|
||||||
public IsAmazonFulfilled?: boolean;
|
|
||||||
/**
|
|
||||||
* @member {Boolean} IsFreeShippingEligible
|
|
||||||
*/
|
};
|
||||||
public IsFreeShippingEligible?: boolean;
|
|
||||||
/**
|
|
||||||
* @member {Boolean} IsPrimeEligible
|
|
||||||
*/
|
|
||||||
public IsPrimeEligible?: boolean;
|
|
||||||
/**
|
|
||||||
* @member {Array.<module:model/OfferShippingCharge>} ShippingCharges
|
|
||||||
*/
|
|
||||||
public ShippingCharges?: OfferShippingCharge[];
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a <code>OfferDeliveryInfo</code> from a plain JavaScript object, optionally creating a new instance.
|
* Constructs a <code>OfferDeliveryInfo</code> from a plain JavaScript object, optionally creating a new instance.
|
||||||
|
|
@ -60,23 +68,46 @@ export class OfferDeliveryInfo {
|
||||||
* @param {module:model/OfferDeliveryInfo} obj Optional instance to populate.
|
* @param {module:model/OfferDeliveryInfo} obj Optional instance to populate.
|
||||||
* @return {module:model/OfferDeliveryInfo} The populated <code>OfferDeliveryInfo</code> instance.
|
* @return {module:model/OfferDeliveryInfo} The populated <code>OfferDeliveryInfo</code> instance.
|
||||||
*/
|
*/
|
||||||
public static constructFromObject(data: any, obj?: OfferDeliveryInfo) {
|
exports.constructFromObject = function(data, obj) {
|
||||||
if (data) {
|
if (data) {
|
||||||
obj = obj || new OfferDeliveryInfo();
|
obj = obj || new exports();
|
||||||
|
|
||||||
if (data.hasOwnProperty('IsAmazonFulfilled')) {
|
if (data.hasOwnProperty('IsAmazonFulfilled')) {
|
||||||
obj.IsAmazonFulfilled = ApiClient.convertToType(data['IsAmazonFulfilled'], 'Boolean');
|
obj['IsAmazonFulfilled'] = ApiClient.convertToType(data['IsAmazonFulfilled'], 'Boolean');
|
||||||
}
|
}
|
||||||
if (data.hasOwnProperty('IsFreeShippingEligible')) {
|
if (data.hasOwnProperty('IsFreeShippingEligible')) {
|
||||||
obj.IsFreeShippingEligible = ApiClient.convertToType(data['IsFreeShippingEligible'], 'Boolean');
|
obj['IsFreeShippingEligible'] = ApiClient.convertToType(data['IsFreeShippingEligible'], 'Boolean');
|
||||||
}
|
}
|
||||||
if (data.hasOwnProperty('IsPrimeEligible')) {
|
if (data.hasOwnProperty('IsPrimeEligible')) {
|
||||||
obj.IsPrimeEligible = ApiClient.convertToType(data['IsPrimeEligible'], 'Boolean');
|
obj['IsPrimeEligible'] = ApiClient.convertToType(data['IsPrimeEligible'], 'Boolean');
|
||||||
}
|
}
|
||||||
if (data.hasOwnProperty('ShippingCharges')) {
|
if (data.hasOwnProperty('ShippingCharges')) {
|
||||||
obj.ShippingCharges = ApiClient.convertToType(data['ShippingCharges'], [OfferShippingCharge]);
|
obj['ShippingCharges'] = ApiClient.convertToType(data['ShippingCharges'], [OfferShippingCharge]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return obj;
|
return obj;
|
||||||
}
|
}
|
||||||
};
|
|
||||||
|
/**
|
||||||
|
* @member {Boolean} IsAmazonFulfilled
|
||||||
|
*/
|
||||||
|
exports.prototype['IsAmazonFulfilled'] = undefined;
|
||||||
|
/**
|
||||||
|
* @member {Boolean} IsFreeShippingEligible
|
||||||
|
*/
|
||||||
|
exports.prototype['IsFreeShippingEligible'] = undefined;
|
||||||
|
/**
|
||||||
|
* @member {Boolean} IsPrimeEligible
|
||||||
|
*/
|
||||||
|
exports.prototype['IsPrimeEligible'] = undefined;
|
||||||
|
/**
|
||||||
|
* @member {Array.<module:model/OfferShippingCharge>} ShippingCharges
|
||||||
|
*/
|
||||||
|
exports.prototype['ShippingCharges'] = undefined;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
return exports;
|
||||||
|
}));
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,24 +21,42 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
(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.ProductAdvertisingAPIv1) {
|
||||||
|
root.ProductAdvertisingAPIv1 = {};
|
||||||
|
}
|
||||||
|
root.ProductAdvertisingAPIv1.OfferLoyaltyPoints = factory(root.ProductAdvertisingAPIv1.ApiClient);
|
||||||
|
}
|
||||||
|
}(this, function(ApiClient) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
* The OfferLoyaltyPoints model module.
|
* The OfferLoyaltyPoints model module.
|
||||||
* @module model/OfferLoyaltyPoints
|
* @module model/OfferLoyaltyPoints
|
||||||
* @version 1.0.0
|
* @version 1.0.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { ApiClient } from "../ApiClient";
|
/**
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructs a new <code>OfferLoyaltyPoints</code>.
|
* Constructs a new <code>OfferLoyaltyPoints</code>.
|
||||||
* @alias module:model/OfferLoyaltyPoints
|
* @alias module:model/OfferLoyaltyPoints
|
||||||
* @class
|
* @class
|
||||||
*/
|
*/
|
||||||
export class OfferLoyaltyPoints {
|
var exports = function() {
|
||||||
/**
|
var _this = this;
|
||||||
* @member {Number} Points
|
|
||||||
*/
|
|
||||||
public Points?: number;
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a <code>OfferLoyaltyPoints</code> from a plain JavaScript object, optionally creating a new instance.
|
* Constructs a <code>OfferLoyaltyPoints</code> from a plain JavaScript object, optionally creating a new instance.
|
||||||
|
|
@ -47,14 +65,25 @@ export class OfferLoyaltyPoints {
|
||||||
* @param {module:model/OfferLoyaltyPoints} obj Optional instance to populate.
|
* @param {module:model/OfferLoyaltyPoints} obj Optional instance to populate.
|
||||||
* @return {module:model/OfferLoyaltyPoints} The populated <code>OfferLoyaltyPoints</code> instance.
|
* @return {module:model/OfferLoyaltyPoints} The populated <code>OfferLoyaltyPoints</code> instance.
|
||||||
*/
|
*/
|
||||||
public static constructFromObject(data: any, obj?: OfferLoyaltyPoints) {
|
exports.constructFromObject = function(data, obj) {
|
||||||
if (data) {
|
if (data) {
|
||||||
obj = obj || new OfferLoyaltyPoints();
|
obj = obj || new exports();
|
||||||
|
|
||||||
if (data.hasOwnProperty('Points')) {
|
if (data.hasOwnProperty('Points')) {
|
||||||
obj.Points = ApiClient.convertToType(data['Points'], 'Number');
|
obj['Points'] = ApiClient.convertToType(data['Points'], 'Number');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return obj;
|
return obj;
|
||||||
}
|
}
|
||||||
};
|
|
||||||
|
/**
|
||||||
|
* @member {Number} Points
|
||||||
|
*/
|
||||||
|
exports.prototype['Points'] = undefined;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
return exports;
|
||||||
|
}));
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,40 +21,46 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
(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.ProductAdvertisingAPIv1) {
|
||||||
|
root.ProductAdvertisingAPIv1 = {};
|
||||||
|
}
|
||||||
|
root.ProductAdvertisingAPIv1.OfferMerchantInfo = factory(root.ProductAdvertisingAPIv1.ApiClient);
|
||||||
|
}
|
||||||
|
}(this, function(ApiClient) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
* The OfferMerchantInfo model module.
|
* The OfferMerchantInfo model module.
|
||||||
* @module model/OfferMerchantInfo
|
* @module model/OfferMerchantInfo
|
||||||
* @version 1.0.0
|
* @version 1.0.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { ApiClient } from "../ApiClient";
|
/**
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructs a new <code>OfferMerchantInfo</code>.
|
* Constructs a new <code>OfferMerchantInfo</code>.
|
||||||
* @alias module:model/OfferMerchantInfo
|
* @alias module:model/OfferMerchantInfo
|
||||||
* @class
|
* @class
|
||||||
*/
|
*/
|
||||||
export class OfferMerchantInfo {
|
var exports = function() {
|
||||||
/**
|
var _this = this;
|
||||||
* @member {String} DefaultShippingCountry
|
|
||||||
*/
|
|
||||||
public DefaultShippingCountry?: string;
|
|
||||||
/**
|
|
||||||
* @member {Number} FeedbackCount
|
|
||||||
*/
|
|
||||||
public FeedbackCount?: number;
|
};
|
||||||
/**
|
|
||||||
* @member {Number} FeedbackRating
|
|
||||||
*/
|
|
||||||
public FeedbackRating?: number;
|
|
||||||
/**
|
|
||||||
* @member {String} Id
|
|
||||||
*/
|
|
||||||
public Id?: string;
|
|
||||||
/**
|
|
||||||
* @member {String} Name
|
|
||||||
*/
|
|
||||||
public Name?: string;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a <code>OfferMerchantInfo</code> from a plain JavaScript object, optionally creating a new instance.
|
* Constructs a <code>OfferMerchantInfo</code> from a plain JavaScript object, optionally creating a new instance.
|
||||||
|
|
@ -63,26 +69,53 @@ export class OfferMerchantInfo {
|
||||||
* @param {module:model/OfferMerchantInfo} obj Optional instance to populate.
|
* @param {module:model/OfferMerchantInfo} obj Optional instance to populate.
|
||||||
* @return {module:model/OfferMerchantInfo} The populated <code>OfferMerchantInfo</code> instance.
|
* @return {module:model/OfferMerchantInfo} The populated <code>OfferMerchantInfo</code> instance.
|
||||||
*/
|
*/
|
||||||
public static constructFromObject(data: any, obj?: OfferMerchantInfo) {
|
exports.constructFromObject = function(data, obj) {
|
||||||
if (data) {
|
if (data) {
|
||||||
obj = obj || new OfferMerchantInfo();
|
obj = obj || new exports();
|
||||||
|
|
||||||
if (data.hasOwnProperty('DefaultShippingCountry')) {
|
if (data.hasOwnProperty('DefaultShippingCountry')) {
|
||||||
obj.DefaultShippingCountry = ApiClient.convertToType(data['DefaultShippingCountry'], 'String');
|
obj['DefaultShippingCountry'] = ApiClient.convertToType(data['DefaultShippingCountry'], 'String');
|
||||||
}
|
}
|
||||||
if (data.hasOwnProperty('FeedbackCount')) {
|
if (data.hasOwnProperty('FeedbackCount')) {
|
||||||
obj.FeedbackCount = ApiClient.convertToType(data['FeedbackCount'], 'Number');
|
obj['FeedbackCount'] = ApiClient.convertToType(data['FeedbackCount'], 'Number');
|
||||||
}
|
}
|
||||||
if (data.hasOwnProperty('FeedbackRating')) {
|
if (data.hasOwnProperty('FeedbackRating')) {
|
||||||
obj.FeedbackRating = ApiClient.convertToType(data['FeedbackRating'], 'Number');
|
obj['FeedbackRating'] = ApiClient.convertToType(data['FeedbackRating'], 'Number');
|
||||||
}
|
}
|
||||||
if (data.hasOwnProperty('Id')) {
|
if (data.hasOwnProperty('Id')) {
|
||||||
obj.Id = ApiClient.convertToType(data['Id'], 'String');
|
obj['Id'] = ApiClient.convertToType(data['Id'], 'String');
|
||||||
}
|
}
|
||||||
if (data.hasOwnProperty('Name')) {
|
if (data.hasOwnProperty('Name')) {
|
||||||
obj.Name = ApiClient.convertToType(data['Name'], 'String');
|
obj['Name'] = ApiClient.convertToType(data['Name'], 'String');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return obj;
|
return obj;
|
||||||
}
|
}
|
||||||
};
|
|
||||||
|
/**
|
||||||
|
* @member {String} DefaultShippingCountry
|
||||||
|
*/
|
||||||
|
exports.prototype['DefaultShippingCountry'] = undefined;
|
||||||
|
/**
|
||||||
|
* @member {Number} FeedbackCount
|
||||||
|
*/
|
||||||
|
exports.prototype['FeedbackCount'] = undefined;
|
||||||
|
/**
|
||||||
|
* @member {Number} FeedbackRating
|
||||||
|
*/
|
||||||
|
exports.prototype['FeedbackRating'] = undefined;
|
||||||
|
/**
|
||||||
|
* @member {String} Id
|
||||||
|
*/
|
||||||
|
exports.prototype['Id'] = undefined;
|
||||||
|
/**
|
||||||
|
* @member {String} Name
|
||||||
|
*/
|
||||||
|
exports.prototype['Name'] = undefined;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
return exports;
|
||||||
|
}));
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,28 +21,43 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
(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.ProductAdvertisingAPIv1) {
|
||||||
|
root.ProductAdvertisingAPIv1 = {};
|
||||||
|
}
|
||||||
|
root.ProductAdvertisingAPIv1.OfferProgramEligibility = factory(root.ProductAdvertisingAPIv1.ApiClient);
|
||||||
|
}
|
||||||
|
}(this, function(ApiClient) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
* The OfferProgramEligibility model module.
|
* The OfferProgramEligibility model module.
|
||||||
* @module model/OfferProgramEligibility
|
* @module model/OfferProgramEligibility
|
||||||
* @version 1.0.0
|
* @version 1.0.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { ApiClient } from "../ApiClient";
|
/**
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructs a new <code>OfferProgramEligibility</code>.
|
* Constructs a new <code>OfferProgramEligibility</code>.
|
||||||
* @alias module:model/OfferProgramEligibility
|
* @alias module:model/OfferProgramEligibility
|
||||||
* @class
|
* @class
|
||||||
*/
|
*/
|
||||||
export class OfferProgramEligibility {
|
var exports = function() {
|
||||||
/**
|
var _this = this;
|
||||||
* @member {Boolean} IsPrimeExclusive
|
|
||||||
*/
|
|
||||||
public IsPrimeExclusive?: boolean;
|
|
||||||
/**
|
};
|
||||||
* @member {Boolean} IsPrimePantry
|
|
||||||
*/
|
|
||||||
public IsPrimePantry?: boolean;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a <code>OfferProgramEligibility</code> from a plain JavaScript object, optionally creating a new instance.
|
* Constructs a <code>OfferProgramEligibility</code> from a plain JavaScript object, optionally creating a new instance.
|
||||||
|
|
@ -51,17 +66,32 @@ export class OfferProgramEligibility {
|
||||||
* @param {module:model/OfferProgramEligibility} obj Optional instance to populate.
|
* @param {module:model/OfferProgramEligibility} obj Optional instance to populate.
|
||||||
* @return {module:model/OfferProgramEligibility} The populated <code>OfferProgramEligibility</code> instance.
|
* @return {module:model/OfferProgramEligibility} The populated <code>OfferProgramEligibility</code> instance.
|
||||||
*/
|
*/
|
||||||
public static constructFromObject(data: any, obj?: OfferProgramEligibility) {
|
exports.constructFromObject = function(data, obj) {
|
||||||
if (data) {
|
if (data) {
|
||||||
obj = obj || new OfferProgramEligibility();
|
obj = obj || new exports();
|
||||||
|
|
||||||
if (data.hasOwnProperty('IsPrimeExclusive')) {
|
if (data.hasOwnProperty('IsPrimeExclusive')) {
|
||||||
obj.IsPrimeExclusive = ApiClient.convertToType(data['IsPrimeExclusive'], 'Boolean');
|
obj['IsPrimeExclusive'] = ApiClient.convertToType(data['IsPrimeExclusive'], 'Boolean');
|
||||||
}
|
}
|
||||||
if (data.hasOwnProperty('IsPrimePantry')) {
|
if (data.hasOwnProperty('IsPrimePantry')) {
|
||||||
obj.IsPrimePantry = ApiClient.convertToType(data['IsPrimePantry'], 'Boolean');
|
obj['IsPrimePantry'] = ApiClient.convertToType(data['IsPrimePantry'], 'Boolean');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return obj;
|
return obj;
|
||||||
}
|
}
|
||||||
};
|
|
||||||
|
/**
|
||||||
|
* @member {Boolean} IsPrimeExclusive
|
||||||
|
*/
|
||||||
|
exports.prototype['IsPrimeExclusive'] = undefined;
|
||||||
|
/**
|
||||||
|
* @member {Boolean} IsPrimePantry
|
||||||
|
*/
|
||||||
|
exports.prototype['IsPrimePantry'] = undefined;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
return exports;
|
||||||
|
}));
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user