Refactored model/MaxPrice.
This commit is contained in:
parent
dedccb86cc
commit
4b72b5f6ea
|
|
@ -54,6 +54,7 @@ import { Images } from "./model/Images";
|
|||
import { ItemIdType } from "./model/ItemIdType";
|
||||
import { Languages } from "./model/Languages";
|
||||
import { LanguageType } from "./model/LanguageType";
|
||||
import { MaxPrice } from "./model/MaxPrice";
|
||||
import { Merchant } from "./model/Merchant";
|
||||
import { MultiValuedAttribute } from "./model/MultiValuedAttribute";
|
||||
import { OfferCount } from "./model/OfferCount";
|
||||
|
|
|
|||
|
|
@ -15,48 +15,24 @@
|
|||
* permissions and limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
/**
|
||||
* ProductAdvertisingAPI
|
||||
* https://webservices.amazon.com/paapi5/documentation/index.html
|
||||
*
|
||||
*/
|
||||
|
||||
(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.MaxPrice = factory(root.ProductAdvertisingAPIv1.ApiClient);
|
||||
}
|
||||
}(this, function(ApiClient) {
|
||||
'use strict';
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* The MaxPrice model module.
|
||||
* @module model/MaxPrice
|
||||
* @version 1.0.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* Constructs a new <code>MaxPrice</code>.
|
||||
* @alias module:model/MaxPrice
|
||||
* @class
|
||||
*/
|
||||
var exports = function() {
|
||||
var _this = this;
|
||||
|
||||
};
|
||||
/**
|
||||
* The MaxPrice model module.
|
||||
* @module model/MaxPrice
|
||||
* @version 1.0.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* Constructs a new <code>MaxPrice</code>.
|
||||
* @alias module:model/MaxPrice
|
||||
* @class
|
||||
*/
|
||||
export class MaxPrice {
|
||||
/**
|
||||
* Constructs a <code>MaxPrice</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.
|
||||
|
|
@ -64,14 +40,7 @@
|
|||
* @param {module:model/MaxPrice} obj Optional instance to populate.
|
||||
* @return {module:model/MaxPrice} The populated <code>MaxPrice</code> instance.
|
||||
*/
|
||||
exports.constructFromObject = function(data, obj) {
|
||||
public static constructFromObject(data: any, _obj?: any) {
|
||||
return data;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
return exports;
|
||||
}));
|
||||
|
||||
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user