Refactored model/MaxPrice.

This commit is contained in:
David Ball 2024-07-17 23:33:15 -04:00
parent dedccb86cc
commit 4b72b5f6ea
2 changed files with 15 additions and 45 deletions

View File

@ -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";

View File

@ -21,26 +21,6 @@
*
*/
(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
@ -52,11 +32,7 @@
* @alias module:model/MaxPrice
* @class
*/
var exports = function() {
var _this = this;
};
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;
}));
};