@flexprice/sdk 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +380 -0
- package/dist/ApiClient.js +703 -0
- package/dist/api/AuthApi.js +116 -0
- package/dist/api/CustomersApi.js +373 -0
- package/dist/api/EntitlementsApi.js +291 -0
- package/dist/api/EnvironmentsApi.js +204 -0
- package/dist/api/EventsApi.js +237 -0
- package/dist/api/FeaturesApi.js +252 -0
- package/dist/api/IntegrationsApi.js +189 -0
- package/dist/api/InvoicesApi.js +444 -0
- package/dist/api/MetersApi.js +287 -0
- package/dist/api/PaymentsApi.js +296 -0
- package/dist/api/PlansApi.js +248 -0
- package/dist/api/PricesApi.js +250 -0
- package/dist/api/SecretsApi.js +155 -0
- package/dist/api/SubscriptionsApi.js +383 -0
- package/dist/api/TasksApi.js +254 -0
- package/dist/api/TenantsApi.js +182 -0
- package/dist/api/UsersApi.js +75 -0
- package/dist/api/WalletsApi.js +384 -0
- package/dist/index.js +1154 -0
- package/dist/model/DtoAddress.js +149 -0
- package/dist/model/DtoAggregatedEntitlement.js +123 -0
- package/dist/model/DtoAggregatedFeature.js +138 -0
- package/dist/model/DtoAuthResponse.js +113 -0
- package/dist/model/DtoBillingPeriodInfo.js +114 -0
- package/dist/model/DtoBulkIngestEventRequest.js +130 -0
- package/dist/model/DtoCreateAPIKeyRequest.js +147 -0
- package/dist/model/DtoCreateAPIKeyResponse.js +103 -0
- package/dist/model/DtoCreateCustomerRequest.js +218 -0
- package/dist/model/DtoCreateEntitlementRequest.js +180 -0
- package/dist/model/DtoCreateEnvironmentRequest.js +126 -0
- package/dist/model/DtoCreateFeatureRequest.js +193 -0
- package/dist/model/DtoCreateIntegrationRequest.js +135 -0
- package/dist/model/DtoCreateInvoiceLineItemRequest.js +238 -0
- package/dist/model/DtoCreateInvoiceRequest.js +316 -0
- package/dist/model/DtoCreateMeterRequest.js +183 -0
- package/dist/model/DtoCreatePaymentRequest.js +202 -0
- package/dist/model/DtoCreatePlanEntitlementRequest.js +180 -0
- package/dist/model/DtoCreatePlanPriceRequest.js +318 -0
- package/dist/model/DtoCreatePlanRequest.js +196 -0
- package/dist/model/DtoCreatePriceRequest.js +318 -0
- package/dist/model/DtoCreatePriceTier.js +132 -0
- package/dist/model/DtoCreateSubscriptionRequest.js +244 -0
- package/dist/model/DtoCreateTaskRequest.js +167 -0
- package/dist/model/DtoCreateTenantRequest.js +126 -0
- package/dist/model/DtoCreateWalletRequest.js +216 -0
- package/dist/model/DtoCustomerEntitlementsResponse.js +122 -0
- package/dist/model/DtoCustomerInvoiceSummary.js +165 -0
- package/dist/model/DtoCustomerMultiCurrencyInvoiceSummary.js +134 -0
- package/dist/model/DtoCustomerResponse.js +300 -0
- package/dist/model/DtoCustomerUsageSummaryResponse.js +150 -0
- package/dist/model/DtoEntitlementResponse.js +276 -0
- package/dist/model/DtoEntitlementSource.js +161 -0
- package/dist/model/DtoEnvironmentResponse.js +137 -0
- package/dist/model/DtoEvent.js +159 -0
- package/dist/model/DtoFeatureResponse.js +275 -0
- package/dist/model/DtoFeatureUsageSummary.js +164 -0
- package/dist/model/DtoGetEventsResponse.js +142 -0
- package/dist/model/DtoGetPreviewInvoiceRequest.js +136 -0
- package/dist/model/DtoGetUsageByMeterRequest.js +179 -0
- package/dist/model/DtoGetUsageBySubscriptionRequest.js +144 -0
- package/dist/model/DtoGetUsageBySubscriptionResponse.js +166 -0
- package/dist/model/DtoGetUsageRequest.js +203 -0
- package/dist/model/DtoGetUsageResponse.js +139 -0
- package/dist/model/DtoIngestEventRequest.js +186 -0
- package/dist/model/DtoInvoiceLineItemResponse.js +343 -0
- package/dist/model/DtoInvoiceResponse.js +479 -0
- package/dist/model/DtoLinkedIntegrationsResponse.js +89 -0
- package/dist/model/DtoListCustomersResponse.js +124 -0
- package/dist/model/DtoListEntitlementsResponse.js +124 -0
- package/dist/model/DtoListEnvironmentsResponse.js +134 -0
- package/dist/model/DtoListFeaturesResponse.js +124 -0
- package/dist/model/DtoListInvoicesResponse.js +124 -0
- package/dist/model/DtoListPaymentsResponse.js +124 -0
- package/dist/model/DtoListPlansResponse.js +124 -0
- package/dist/model/DtoListPricesResponse.js +124 -0
- package/dist/model/DtoListSecretsResponse.js +124 -0
- package/dist/model/DtoListSubscriptionPausesResponse.js +118 -0
- package/dist/model/DtoListSubscriptionsResponse.js +124 -0
- package/dist/model/DtoListTasksResponse.js +124 -0
- package/dist/model/DtoListWalletTransactionsResponse.js +124 -0
- package/dist/model/DtoLoginRequest.js +138 -0
- package/dist/model/DtoMeterResponse.js +217 -0
- package/dist/model/DtoPauseSubscriptionRequest.js +171 -0
- package/dist/model/DtoPaymentAttemptResponse.js +191 -0
- package/dist/model/DtoPaymentResponse.js +331 -0
- package/dist/model/DtoPlanResponse.js +269 -0
- package/dist/model/DtoPriceResponse.js +412 -0
- package/dist/model/DtoResumeSubscriptionRequest.js +127 -0
- package/dist/model/DtoSecretResponse.js +200 -0
- package/dist/model/DtoSignUpRequest.js +148 -0
- package/dist/model/DtoSubscriptionPauseResponse.js +300 -0
- package/dist/model/DtoSubscriptionResponse.js +518 -0
- package/dist/model/DtoSubscriptionUsageByMetersResponse.js +165 -0
- package/dist/model/DtoTaskResponse.js +311 -0
- package/dist/model/DtoTenantBillingDetails.js +127 -0
- package/dist/model/DtoTenantBillingUsage.js +124 -0
- package/dist/model/DtoTenantResponse.js +151 -0
- package/dist/model/DtoTopUpWalletRequest.js +185 -0
- package/dist/model/DtoUpdateCustomerRequest.js +195 -0
- package/dist/model/DtoUpdateEntitlementRequest.js +122 -0
- package/dist/model/DtoUpdateEnvironmentRequest.js +101 -0
- package/dist/model/DtoUpdateFeatureRequest.js +135 -0
- package/dist/model/DtoUpdateMeterRequest.js +110 -0
- package/dist/model/DtoUpdatePaymentRequest.js +99 -0
- package/dist/model/DtoUpdatePaymentStatusRequest.js +117 -0
- package/dist/model/DtoUpdatePlanEntitlementRequest.js +193 -0
- package/dist/model/DtoUpdatePlanPriceRequest.js +331 -0
- package/dist/model/DtoUpdatePlanRequest.js +176 -0
- package/dist/model/DtoUpdatePriceRequest.js +111 -0
- package/dist/model/DtoUpdateTaskStatusRequest.js +109 -0
- package/dist/model/DtoUpdateTenantRequest.js +91 -0
- package/dist/model/DtoUpdateWalletRequest.js +150 -0
- package/dist/model/DtoUsageResult.js +97 -0
- package/dist/model/DtoUserResponse.js +115 -0
- package/dist/model/DtoWalletBalanceResponse.js +353 -0
- package/dist/model/DtoWalletResponse.js +252 -0
- package/dist/model/DtoWalletTransactionResponse.js +238 -0
- package/dist/model/ErrorsErrorDetail.js +111 -0
- package/dist/model/ErrorsErrorResponse.js +99 -0
- package/dist/model/MeterAggregation.js +99 -0
- package/dist/model/MeterFilter.js +103 -0
- package/dist/model/PriceJSONBTransformQuantity.js +99 -0
- package/dist/model/PricePrice.js +398 -0
- package/dist/model/PricePriceTier.js +104 -0
- package/dist/model/PriceTransformQuantity.js +99 -0
- package/dist/model/SubscriptionSubscriptionLineItem.js +355 -0
- package/dist/model/SubscriptionSubscriptionPause.js +300 -0
- package/dist/model/TypesAggregationType.js +68 -0
- package/dist/model/TypesAutoTopupTrigger.js +58 -0
- package/dist/model/TypesBillingCadence.js +58 -0
- package/dist/model/TypesBillingModel.js +63 -0
- package/dist/model/TypesBillingPeriod.js +78 -0
- package/dist/model/TypesBillingTier.js +58 -0
- package/dist/model/TypesEntityType.js +63 -0
- package/dist/model/TypesFeatureType.js +63 -0
- package/dist/model/TypesFileType.js +58 -0
- package/dist/model/TypesInvoiceBillingReason.js +68 -0
- package/dist/model/TypesInvoiceCadence.js +58 -0
- package/dist/model/TypesInvoiceStatus.js +63 -0
- package/dist/model/TypesInvoiceType.js +63 -0
- package/dist/model/TypesPaginationResponse.js +101 -0
- package/dist/model/TypesPauseMode.js +63 -0
- package/dist/model/TypesPauseStatus.js +73 -0
- package/dist/model/TypesPaymentDestinationType.js +53 -0
- package/dist/model/TypesPaymentMethodType.js +68 -0
- package/dist/model/TypesPaymentStatus.js +78 -0
- package/dist/model/TypesPriceType.js +58 -0
- package/dist/model/TypesResetUsage.js +58 -0
- package/dist/model/TypesResumeMode.js +63 -0
- package/dist/model/TypesSecretProvider.js +63 -0
- package/dist/model/TypesSecretType.js +63 -0
- package/dist/model/TypesStatus.js +63 -0
- package/dist/model/TypesSubscriptionStatus.js +88 -0
- package/dist/model/TypesTaskStatus.js +68 -0
- package/dist/model/TypesTaskType.js +58 -0
- package/dist/model/TypesTransactionReason.js +88 -0
- package/dist/model/TypesTransactionStatus.js +63 -0
- package/dist/model/TypesTransactionType.js +58 -0
- package/dist/model/TypesWalletConfig.js +91 -0
- package/dist/model/TypesWalletConfigPriceType.js +63 -0
- package/dist/model/TypesWalletStatus.js +63 -0
- package/dist/model/TypesWalletTxReferenceType.js +68 -0
- package/dist/model/TypesWalletType.js +58 -0
- package/dist/model/TypesWindowSize.js +63 -0
- package/package.json +54 -0
|
@@ -0,0 +1,398 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
8
|
+
var _PriceJSONBTransformQuantity = _interopRequireDefault(require("./PriceJSONBTransformQuantity"));
|
|
9
|
+
var _PricePriceTier = _interopRequireDefault(require("./PricePriceTier"));
|
|
10
|
+
var _TypesBillingCadence = _interopRequireDefault(require("./TypesBillingCadence"));
|
|
11
|
+
var _TypesBillingModel = _interopRequireDefault(require("./TypesBillingModel"));
|
|
12
|
+
var _TypesBillingPeriod = _interopRequireDefault(require("./TypesBillingPeriod"));
|
|
13
|
+
var _TypesBillingTier = _interopRequireDefault(require("./TypesBillingTier"));
|
|
14
|
+
var _TypesInvoiceCadence = _interopRequireDefault(require("./TypesInvoiceCadence"));
|
|
15
|
+
var _TypesPriceType = _interopRequireDefault(require("./TypesPriceType"));
|
|
16
|
+
var _TypesStatus = _interopRequireDefault(require("./TypesStatus"));
|
|
17
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
18
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
19
|
+
function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t["return"] || t["return"](); } finally { if (u) throw o; } } }; }
|
|
20
|
+
function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
|
|
21
|
+
function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
|
|
22
|
+
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
|
23
|
+
function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
|
|
24
|
+
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
|
25
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
26
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
|
|
27
|
+
* FlexPrice API
|
|
28
|
+
* FlexPrice API Service
|
|
29
|
+
*
|
|
30
|
+
* The version of the OpenAPI document: 1.0
|
|
31
|
+
*
|
|
32
|
+
*
|
|
33
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
34
|
+
* https://openapi-generator.tech
|
|
35
|
+
* Do not edit the class manually.
|
|
36
|
+
*
|
|
37
|
+
*/
|
|
38
|
+
/**
|
|
39
|
+
* The PricePrice model module.
|
|
40
|
+
* @module model/PricePrice
|
|
41
|
+
* @version 1.0
|
|
42
|
+
*/
|
|
43
|
+
var PricePrice = /*#__PURE__*/function () {
|
|
44
|
+
/**
|
|
45
|
+
* Constructs a new <code>PricePrice</code>.
|
|
46
|
+
* @alias module:model/PricePrice
|
|
47
|
+
*/
|
|
48
|
+
function PricePrice() {
|
|
49
|
+
_classCallCheck(this, PricePrice);
|
|
50
|
+
PricePrice.initialize(this);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* Initializes the fields of this object.
|
|
55
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
56
|
+
* Only for internal use.
|
|
57
|
+
*/
|
|
58
|
+
return _createClass(PricePrice, null, [{
|
|
59
|
+
key: "initialize",
|
|
60
|
+
value: function initialize(obj) {}
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* Constructs a <code>PricePrice</code> from a plain JavaScript object, optionally creating a new instance.
|
|
64
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
65
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
66
|
+
* @param {module:model/PricePrice} obj Optional instance to populate.
|
|
67
|
+
* @return {module:model/PricePrice} The populated <code>PricePrice</code> instance.
|
|
68
|
+
*/
|
|
69
|
+
}, {
|
|
70
|
+
key: "constructFromObject",
|
|
71
|
+
value: function constructFromObject(data, obj) {
|
|
72
|
+
if (data) {
|
|
73
|
+
obj = obj || new PricePrice();
|
|
74
|
+
if (data.hasOwnProperty('amount')) {
|
|
75
|
+
obj['amount'] = _ApiClient["default"].convertToType(data['amount'], 'Number');
|
|
76
|
+
}
|
|
77
|
+
if (data.hasOwnProperty('billing_cadence')) {
|
|
78
|
+
obj['billing_cadence'] = _TypesBillingCadence["default"].constructFromObject(data['billing_cadence']);
|
|
79
|
+
}
|
|
80
|
+
if (data.hasOwnProperty('billing_model')) {
|
|
81
|
+
obj['billing_model'] = _TypesBillingModel["default"].constructFromObject(data['billing_model']);
|
|
82
|
+
}
|
|
83
|
+
if (data.hasOwnProperty('billing_period')) {
|
|
84
|
+
obj['billing_period'] = _TypesBillingPeriod["default"].constructFromObject(data['billing_period']);
|
|
85
|
+
}
|
|
86
|
+
if (data.hasOwnProperty('billing_period_count')) {
|
|
87
|
+
obj['billing_period_count'] = _ApiClient["default"].convertToType(data['billing_period_count'], 'Number');
|
|
88
|
+
}
|
|
89
|
+
if (data.hasOwnProperty('created_at')) {
|
|
90
|
+
obj['created_at'] = _ApiClient["default"].convertToType(data['created_at'], 'String');
|
|
91
|
+
}
|
|
92
|
+
if (data.hasOwnProperty('created_by')) {
|
|
93
|
+
obj['created_by'] = _ApiClient["default"].convertToType(data['created_by'], 'String');
|
|
94
|
+
}
|
|
95
|
+
if (data.hasOwnProperty('currency')) {
|
|
96
|
+
obj['currency'] = _ApiClient["default"].convertToType(data['currency'], 'String');
|
|
97
|
+
}
|
|
98
|
+
if (data.hasOwnProperty('description')) {
|
|
99
|
+
obj['description'] = _ApiClient["default"].convertToType(data['description'], 'String');
|
|
100
|
+
}
|
|
101
|
+
if (data.hasOwnProperty('display_amount')) {
|
|
102
|
+
obj['display_amount'] = _ApiClient["default"].convertToType(data['display_amount'], 'String');
|
|
103
|
+
}
|
|
104
|
+
if (data.hasOwnProperty('environment_id')) {
|
|
105
|
+
obj['environment_id'] = _ApiClient["default"].convertToType(data['environment_id'], 'String');
|
|
106
|
+
}
|
|
107
|
+
if (data.hasOwnProperty('filter_values')) {
|
|
108
|
+
obj['filter_values'] = _ApiClient["default"].convertToType(data['filter_values'], {
|
|
109
|
+
'String': ['String']
|
|
110
|
+
});
|
|
111
|
+
}
|
|
112
|
+
if (data.hasOwnProperty('id')) {
|
|
113
|
+
obj['id'] = _ApiClient["default"].convertToType(data['id'], 'String');
|
|
114
|
+
}
|
|
115
|
+
if (data.hasOwnProperty('invoice_cadence')) {
|
|
116
|
+
obj['invoice_cadence'] = _TypesInvoiceCadence["default"].constructFromObject(data['invoice_cadence']);
|
|
117
|
+
}
|
|
118
|
+
if (data.hasOwnProperty('lookup_key')) {
|
|
119
|
+
obj['lookup_key'] = _ApiClient["default"].convertToType(data['lookup_key'], 'String');
|
|
120
|
+
}
|
|
121
|
+
if (data.hasOwnProperty('metadata')) {
|
|
122
|
+
obj['metadata'] = _ApiClient["default"].convertToType(data['metadata'], {
|
|
123
|
+
'String': 'String'
|
|
124
|
+
});
|
|
125
|
+
}
|
|
126
|
+
if (data.hasOwnProperty('meter_id')) {
|
|
127
|
+
obj['meter_id'] = _ApiClient["default"].convertToType(data['meter_id'], 'String');
|
|
128
|
+
}
|
|
129
|
+
if (data.hasOwnProperty('plan_id')) {
|
|
130
|
+
obj['plan_id'] = _ApiClient["default"].convertToType(data['plan_id'], 'String');
|
|
131
|
+
}
|
|
132
|
+
if (data.hasOwnProperty('status')) {
|
|
133
|
+
obj['status'] = _TypesStatus["default"].constructFromObject(data['status']);
|
|
134
|
+
}
|
|
135
|
+
if (data.hasOwnProperty('tenant_id')) {
|
|
136
|
+
obj['tenant_id'] = _ApiClient["default"].convertToType(data['tenant_id'], 'String');
|
|
137
|
+
}
|
|
138
|
+
if (data.hasOwnProperty('tier_mode')) {
|
|
139
|
+
obj['tier_mode'] = _TypesBillingTier["default"].constructFromObject(data['tier_mode']);
|
|
140
|
+
}
|
|
141
|
+
if (data.hasOwnProperty('tiers')) {
|
|
142
|
+
obj['tiers'] = _ApiClient["default"].convertToType(data['tiers'], [_PricePriceTier["default"]]);
|
|
143
|
+
}
|
|
144
|
+
if (data.hasOwnProperty('transform_quantity')) {
|
|
145
|
+
obj['transform_quantity'] = _PriceJSONBTransformQuantity["default"].constructFromObject(data['transform_quantity']);
|
|
146
|
+
}
|
|
147
|
+
if (data.hasOwnProperty('trial_period')) {
|
|
148
|
+
obj['trial_period'] = _ApiClient["default"].convertToType(data['trial_period'], 'Number');
|
|
149
|
+
}
|
|
150
|
+
if (data.hasOwnProperty('type')) {
|
|
151
|
+
obj['type'] = _TypesPriceType["default"].constructFromObject(data['type']);
|
|
152
|
+
}
|
|
153
|
+
if (data.hasOwnProperty('updated_at')) {
|
|
154
|
+
obj['updated_at'] = _ApiClient["default"].convertToType(data['updated_at'], 'String');
|
|
155
|
+
}
|
|
156
|
+
if (data.hasOwnProperty('updated_by')) {
|
|
157
|
+
obj['updated_by'] = _ApiClient["default"].convertToType(data['updated_by'], 'String');
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
return obj;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
/**
|
|
164
|
+
* Validates the JSON data with respect to <code>PricePrice</code>.
|
|
165
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
166
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>PricePrice</code>.
|
|
167
|
+
*/
|
|
168
|
+
}, {
|
|
169
|
+
key: "validateJSON",
|
|
170
|
+
value: function validateJSON(data) {
|
|
171
|
+
// ensure the json data is a string
|
|
172
|
+
if (data['created_at'] && !(typeof data['created_at'] === 'string' || data['created_at'] instanceof String)) {
|
|
173
|
+
throw new Error("Expected the field `created_at` to be a primitive type in the JSON string but got " + data['created_at']);
|
|
174
|
+
}
|
|
175
|
+
// ensure the json data is a string
|
|
176
|
+
if (data['created_by'] && !(typeof data['created_by'] === 'string' || data['created_by'] instanceof String)) {
|
|
177
|
+
throw new Error("Expected the field `created_by` to be a primitive type in the JSON string but got " + data['created_by']);
|
|
178
|
+
}
|
|
179
|
+
// ensure the json data is a string
|
|
180
|
+
if (data['currency'] && !(typeof data['currency'] === 'string' || data['currency'] instanceof String)) {
|
|
181
|
+
throw new Error("Expected the field `currency` to be a primitive type in the JSON string but got " + data['currency']);
|
|
182
|
+
}
|
|
183
|
+
// ensure the json data is a string
|
|
184
|
+
if (data['description'] && !(typeof data['description'] === 'string' || data['description'] instanceof String)) {
|
|
185
|
+
throw new Error("Expected the field `description` to be a primitive type in the JSON string but got " + data['description']);
|
|
186
|
+
}
|
|
187
|
+
// ensure the json data is a string
|
|
188
|
+
if (data['display_amount'] && !(typeof data['display_amount'] === 'string' || data['display_amount'] instanceof String)) {
|
|
189
|
+
throw new Error("Expected the field `display_amount` to be a primitive type in the JSON string but got " + data['display_amount']);
|
|
190
|
+
}
|
|
191
|
+
// ensure the json data is a string
|
|
192
|
+
if (data['environment_id'] && !(typeof data['environment_id'] === 'string' || data['environment_id'] instanceof String)) {
|
|
193
|
+
throw new Error("Expected the field `environment_id` to be a primitive type in the JSON string but got " + data['environment_id']);
|
|
194
|
+
}
|
|
195
|
+
// ensure the json data is a string
|
|
196
|
+
if (data['id'] && !(typeof data['id'] === 'string' || data['id'] instanceof String)) {
|
|
197
|
+
throw new Error("Expected the field `id` to be a primitive type in the JSON string but got " + data['id']);
|
|
198
|
+
}
|
|
199
|
+
// ensure the json data is a string
|
|
200
|
+
if (data['lookup_key'] && !(typeof data['lookup_key'] === 'string' || data['lookup_key'] instanceof String)) {
|
|
201
|
+
throw new Error("Expected the field `lookup_key` to be a primitive type in the JSON string but got " + data['lookup_key']);
|
|
202
|
+
}
|
|
203
|
+
// ensure the json data is a string
|
|
204
|
+
if (data['meter_id'] && !(typeof data['meter_id'] === 'string' || data['meter_id'] instanceof String)) {
|
|
205
|
+
throw new Error("Expected the field `meter_id` to be a primitive type in the JSON string but got " + data['meter_id']);
|
|
206
|
+
}
|
|
207
|
+
// ensure the json data is a string
|
|
208
|
+
if (data['plan_id'] && !(typeof data['plan_id'] === 'string' || data['plan_id'] instanceof String)) {
|
|
209
|
+
throw new Error("Expected the field `plan_id` to be a primitive type in the JSON string but got " + data['plan_id']);
|
|
210
|
+
}
|
|
211
|
+
// ensure the json data is a string
|
|
212
|
+
if (data['tenant_id'] && !(typeof data['tenant_id'] === 'string' || data['tenant_id'] instanceof String)) {
|
|
213
|
+
throw new Error("Expected the field `tenant_id` to be a primitive type in the JSON string but got " + data['tenant_id']);
|
|
214
|
+
}
|
|
215
|
+
if (data['tiers']) {
|
|
216
|
+
// data not null
|
|
217
|
+
// ensure the json data is an array
|
|
218
|
+
if (!Array.isArray(data['tiers'])) {
|
|
219
|
+
throw new Error("Expected the field `tiers` to be an array in the JSON data but got " + data['tiers']);
|
|
220
|
+
}
|
|
221
|
+
// validate the optional field `tiers` (array)
|
|
222
|
+
var _iterator = _createForOfIteratorHelper(data['tiers']),
|
|
223
|
+
_step;
|
|
224
|
+
try {
|
|
225
|
+
for (_iterator.s(); !(_step = _iterator.n()).done;) {
|
|
226
|
+
var item = _step.value;
|
|
227
|
+
_PricePriceTier["default"].validateJSON(item);
|
|
228
|
+
}
|
|
229
|
+
} catch (err) {
|
|
230
|
+
_iterator.e(err);
|
|
231
|
+
} finally {
|
|
232
|
+
_iterator.f();
|
|
233
|
+
}
|
|
234
|
+
;
|
|
235
|
+
}
|
|
236
|
+
// validate the optional field `transform_quantity`
|
|
237
|
+
if (data['transform_quantity']) {
|
|
238
|
+
// data not null
|
|
239
|
+
_PriceJSONBTransformQuantity["default"].validateJSON(data['transform_quantity']);
|
|
240
|
+
}
|
|
241
|
+
// ensure the json data is a string
|
|
242
|
+
if (data['updated_at'] && !(typeof data['updated_at'] === 'string' || data['updated_at'] instanceof String)) {
|
|
243
|
+
throw new Error("Expected the field `updated_at` to be a primitive type in the JSON string but got " + data['updated_at']);
|
|
244
|
+
}
|
|
245
|
+
// ensure the json data is a string
|
|
246
|
+
if (data['updated_by'] && !(typeof data['updated_by'] === 'string' || data['updated_by'] instanceof String)) {
|
|
247
|
+
throw new Error("Expected the field `updated_by` to be a primitive type in the JSON string but got " + data['updated_by']);
|
|
248
|
+
}
|
|
249
|
+
return true;
|
|
250
|
+
}
|
|
251
|
+
}]);
|
|
252
|
+
}();
|
|
253
|
+
/**
|
|
254
|
+
* Amount stored in main currency units (e.g., dollars, not cents) For USD: 12.50 means $12.50
|
|
255
|
+
* @member {Number} amount
|
|
256
|
+
*/
|
|
257
|
+
PricePrice.prototype['amount'] = undefined;
|
|
258
|
+
|
|
259
|
+
/**
|
|
260
|
+
* @member {module:model/TypesBillingCadence} billing_cadence
|
|
261
|
+
*/
|
|
262
|
+
PricePrice.prototype['billing_cadence'] = undefined;
|
|
263
|
+
|
|
264
|
+
/**
|
|
265
|
+
* @member {module:model/TypesBillingModel} billing_model
|
|
266
|
+
*/
|
|
267
|
+
PricePrice.prototype['billing_model'] = undefined;
|
|
268
|
+
|
|
269
|
+
/**
|
|
270
|
+
* @member {module:model/TypesBillingPeriod} billing_period
|
|
271
|
+
*/
|
|
272
|
+
PricePrice.prototype['billing_period'] = undefined;
|
|
273
|
+
|
|
274
|
+
/**
|
|
275
|
+
* BillingPeriodCount is the count of the billing period ex 1, 3, 6, 12
|
|
276
|
+
* @member {Number} billing_period_count
|
|
277
|
+
*/
|
|
278
|
+
PricePrice.prototype['billing_period_count'] = undefined;
|
|
279
|
+
|
|
280
|
+
/**
|
|
281
|
+
* @member {String} created_at
|
|
282
|
+
*/
|
|
283
|
+
PricePrice.prototype['created_at'] = undefined;
|
|
284
|
+
|
|
285
|
+
/**
|
|
286
|
+
* @member {String} created_by
|
|
287
|
+
*/
|
|
288
|
+
PricePrice.prototype['created_by'] = undefined;
|
|
289
|
+
|
|
290
|
+
/**
|
|
291
|
+
* Currency 3 digit ISO currency code in lowercase ex usd, eur, gbp
|
|
292
|
+
* @member {String} currency
|
|
293
|
+
*/
|
|
294
|
+
PricePrice.prototype['currency'] = undefined;
|
|
295
|
+
|
|
296
|
+
/**
|
|
297
|
+
* Description of the price
|
|
298
|
+
* @member {String} description
|
|
299
|
+
*/
|
|
300
|
+
PricePrice.prototype['description'] = undefined;
|
|
301
|
+
|
|
302
|
+
/**
|
|
303
|
+
* DisplayAmount is the formatted amount with currency symbol For USD: $12.50
|
|
304
|
+
* @member {String} display_amount
|
|
305
|
+
*/
|
|
306
|
+
PricePrice.prototype['display_amount'] = undefined;
|
|
307
|
+
|
|
308
|
+
/**
|
|
309
|
+
* EnvironmentID is the environment identifier for the price
|
|
310
|
+
* @member {String} environment_id
|
|
311
|
+
*/
|
|
312
|
+
PricePrice.prototype['environment_id'] = undefined;
|
|
313
|
+
|
|
314
|
+
/**
|
|
315
|
+
* @member {Object.<String, Array.<String>>} filter_values
|
|
316
|
+
*/
|
|
317
|
+
PricePrice.prototype['filter_values'] = undefined;
|
|
318
|
+
|
|
319
|
+
/**
|
|
320
|
+
* ID uuid identifier for the price
|
|
321
|
+
* @member {String} id
|
|
322
|
+
*/
|
|
323
|
+
PricePrice.prototype['id'] = undefined;
|
|
324
|
+
|
|
325
|
+
/**
|
|
326
|
+
* @member {module:model/TypesInvoiceCadence} invoice_cadence
|
|
327
|
+
*/
|
|
328
|
+
PricePrice.prototype['invoice_cadence'] = undefined;
|
|
329
|
+
|
|
330
|
+
/**
|
|
331
|
+
* LookupKey used for looking up the price in the database
|
|
332
|
+
* @member {String} lookup_key
|
|
333
|
+
*/
|
|
334
|
+
PricePrice.prototype['lookup_key'] = undefined;
|
|
335
|
+
|
|
336
|
+
/**
|
|
337
|
+
* @member {Object.<String, String>} metadata
|
|
338
|
+
*/
|
|
339
|
+
PricePrice.prototype['metadata'] = undefined;
|
|
340
|
+
|
|
341
|
+
/**
|
|
342
|
+
* MeterID is the id of the meter for usage based pricing
|
|
343
|
+
* @member {String} meter_id
|
|
344
|
+
*/
|
|
345
|
+
PricePrice.prototype['meter_id'] = undefined;
|
|
346
|
+
|
|
347
|
+
/**
|
|
348
|
+
* PlanID is the id of the plan for plan based pricing
|
|
349
|
+
* @member {String} plan_id
|
|
350
|
+
*/
|
|
351
|
+
PricePrice.prototype['plan_id'] = undefined;
|
|
352
|
+
|
|
353
|
+
/**
|
|
354
|
+
* @member {module:model/TypesStatus} status
|
|
355
|
+
*/
|
|
356
|
+
PricePrice.prototype['status'] = undefined;
|
|
357
|
+
|
|
358
|
+
/**
|
|
359
|
+
* @member {String} tenant_id
|
|
360
|
+
*/
|
|
361
|
+
PricePrice.prototype['tenant_id'] = undefined;
|
|
362
|
+
|
|
363
|
+
/**
|
|
364
|
+
* @member {module:model/TypesBillingTier} tier_mode
|
|
365
|
+
*/
|
|
366
|
+
PricePrice.prototype['tier_mode'] = undefined;
|
|
367
|
+
|
|
368
|
+
/**
|
|
369
|
+
* @member {Array.<module:model/PricePriceTier>} tiers
|
|
370
|
+
*/
|
|
371
|
+
PricePrice.prototype['tiers'] = undefined;
|
|
372
|
+
|
|
373
|
+
/**
|
|
374
|
+
* @member {module:model/PriceJSONBTransformQuantity} transform_quantity
|
|
375
|
+
*/
|
|
376
|
+
PricePrice.prototype['transform_quantity'] = undefined;
|
|
377
|
+
|
|
378
|
+
/**
|
|
379
|
+
* TrialPeriod is the number of days for the trial period Note: This is only applicable for recurring prices (BILLING_CADENCE_RECURRING)
|
|
380
|
+
* @member {Number} trial_period
|
|
381
|
+
*/
|
|
382
|
+
PricePrice.prototype['trial_period'] = undefined;
|
|
383
|
+
|
|
384
|
+
/**
|
|
385
|
+
* @member {module:model/TypesPriceType} type
|
|
386
|
+
*/
|
|
387
|
+
PricePrice.prototype['type'] = undefined;
|
|
388
|
+
|
|
389
|
+
/**
|
|
390
|
+
* @member {String} updated_at
|
|
391
|
+
*/
|
|
392
|
+
PricePrice.prototype['updated_at'] = undefined;
|
|
393
|
+
|
|
394
|
+
/**
|
|
395
|
+
* @member {String} updated_by
|
|
396
|
+
*/
|
|
397
|
+
PricePrice.prototype['updated_by'] = undefined;
|
|
398
|
+
var _default = exports["default"] = PricePrice;
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
8
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
9
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
10
|
+
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
|
11
|
+
function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
|
|
12
|
+
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
|
13
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
14
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
|
|
15
|
+
* FlexPrice API
|
|
16
|
+
* FlexPrice API Service
|
|
17
|
+
*
|
|
18
|
+
* The version of the OpenAPI document: 1.0
|
|
19
|
+
*
|
|
20
|
+
*
|
|
21
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
22
|
+
* https://openapi-generator.tech
|
|
23
|
+
* Do not edit the class manually.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
/**
|
|
27
|
+
* The PricePriceTier model module.
|
|
28
|
+
* @module model/PricePriceTier
|
|
29
|
+
* @version 1.0
|
|
30
|
+
*/
|
|
31
|
+
var PricePriceTier = /*#__PURE__*/function () {
|
|
32
|
+
/**
|
|
33
|
+
* Constructs a new <code>PricePriceTier</code>.
|
|
34
|
+
* @alias module:model/PricePriceTier
|
|
35
|
+
*/
|
|
36
|
+
function PricePriceTier() {
|
|
37
|
+
_classCallCheck(this, PricePriceTier);
|
|
38
|
+
PricePriceTier.initialize(this);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Initializes the fields of this object.
|
|
43
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
44
|
+
* Only for internal use.
|
|
45
|
+
*/
|
|
46
|
+
return _createClass(PricePriceTier, null, [{
|
|
47
|
+
key: "initialize",
|
|
48
|
+
value: function initialize(obj) {}
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* Constructs a <code>PricePriceTier</code> from a plain JavaScript object, optionally creating a new instance.
|
|
52
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
53
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
54
|
+
* @param {module:model/PricePriceTier} obj Optional instance to populate.
|
|
55
|
+
* @return {module:model/PricePriceTier} The populated <code>PricePriceTier</code> instance.
|
|
56
|
+
*/
|
|
57
|
+
}, {
|
|
58
|
+
key: "constructFromObject",
|
|
59
|
+
value: function constructFromObject(data, obj) {
|
|
60
|
+
if (data) {
|
|
61
|
+
obj = obj || new PricePriceTier();
|
|
62
|
+
if (data.hasOwnProperty('flat_amount')) {
|
|
63
|
+
obj['flat_amount'] = _ApiClient["default"].convertToType(data['flat_amount'], 'Number');
|
|
64
|
+
}
|
|
65
|
+
if (data.hasOwnProperty('unit_amount')) {
|
|
66
|
+
obj['unit_amount'] = _ApiClient["default"].convertToType(data['unit_amount'], 'Number');
|
|
67
|
+
}
|
|
68
|
+
if (data.hasOwnProperty('up_to')) {
|
|
69
|
+
obj['up_to'] = _ApiClient["default"].convertToType(data['up_to'], 'Number');
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
return obj;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* Validates the JSON data with respect to <code>PricePriceTier</code>.
|
|
77
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
78
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>PricePriceTier</code>.
|
|
79
|
+
*/
|
|
80
|
+
}, {
|
|
81
|
+
key: "validateJSON",
|
|
82
|
+
value: function validateJSON(data) {
|
|
83
|
+
return true;
|
|
84
|
+
}
|
|
85
|
+
}]);
|
|
86
|
+
}();
|
|
87
|
+
/**
|
|
88
|
+
* FlatAmount is the flat amount for the given tier and it is applied on top of the unit amount*quantity. It solves cases in banking like 2.7% + 5c
|
|
89
|
+
* @member {Number} flat_amount
|
|
90
|
+
*/
|
|
91
|
+
PricePriceTier.prototype['flat_amount'] = undefined;
|
|
92
|
+
|
|
93
|
+
/**
|
|
94
|
+
* UnitAmount is the amount per unit for the given tier
|
|
95
|
+
* @member {Number} unit_amount
|
|
96
|
+
*/
|
|
97
|
+
PricePriceTier.prototype['unit_amount'] = undefined;
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* Upto is the quantity up to which this tier applies. It is null for the last tier
|
|
101
|
+
* @member {Number} up_to
|
|
102
|
+
*/
|
|
103
|
+
PricePriceTier.prototype['up_to'] = undefined;
|
|
104
|
+
var _default = exports["default"] = PricePriceTier;
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
8
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
9
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
10
|
+
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
|
11
|
+
function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
|
|
12
|
+
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
|
13
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
14
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
|
|
15
|
+
* FlexPrice API
|
|
16
|
+
* FlexPrice API Service
|
|
17
|
+
*
|
|
18
|
+
* The version of the OpenAPI document: 1.0
|
|
19
|
+
*
|
|
20
|
+
*
|
|
21
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
22
|
+
* https://openapi-generator.tech
|
|
23
|
+
* Do not edit the class manually.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
/**
|
|
27
|
+
* The PriceTransformQuantity model module.
|
|
28
|
+
* @module model/PriceTransformQuantity
|
|
29
|
+
* @version 1.0
|
|
30
|
+
*/
|
|
31
|
+
var PriceTransformQuantity = /*#__PURE__*/function () {
|
|
32
|
+
/**
|
|
33
|
+
* Constructs a new <code>PriceTransformQuantity</code>.
|
|
34
|
+
* @alias module:model/PriceTransformQuantity
|
|
35
|
+
*/
|
|
36
|
+
function PriceTransformQuantity() {
|
|
37
|
+
_classCallCheck(this, PriceTransformQuantity);
|
|
38
|
+
PriceTransformQuantity.initialize(this);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Initializes the fields of this object.
|
|
43
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
44
|
+
* Only for internal use.
|
|
45
|
+
*/
|
|
46
|
+
return _createClass(PriceTransformQuantity, null, [{
|
|
47
|
+
key: "initialize",
|
|
48
|
+
value: function initialize(obj) {}
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* Constructs a <code>PriceTransformQuantity</code> from a plain JavaScript object, optionally creating a new instance.
|
|
52
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
53
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
54
|
+
* @param {module:model/PriceTransformQuantity} obj Optional instance to populate.
|
|
55
|
+
* @return {module:model/PriceTransformQuantity} The populated <code>PriceTransformQuantity</code> instance.
|
|
56
|
+
*/
|
|
57
|
+
}, {
|
|
58
|
+
key: "constructFromObject",
|
|
59
|
+
value: function constructFromObject(data, obj) {
|
|
60
|
+
if (data) {
|
|
61
|
+
obj = obj || new PriceTransformQuantity();
|
|
62
|
+
if (data.hasOwnProperty('divide_by')) {
|
|
63
|
+
obj['divide_by'] = _ApiClient["default"].convertToType(data['divide_by'], 'Number');
|
|
64
|
+
}
|
|
65
|
+
if (data.hasOwnProperty('round')) {
|
|
66
|
+
obj['round'] = _ApiClient["default"].convertToType(data['round'], 'String');
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
return obj;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* Validates the JSON data with respect to <code>PriceTransformQuantity</code>.
|
|
74
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
75
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>PriceTransformQuantity</code>.
|
|
76
|
+
*/
|
|
77
|
+
}, {
|
|
78
|
+
key: "validateJSON",
|
|
79
|
+
value: function validateJSON(data) {
|
|
80
|
+
// ensure the json data is a string
|
|
81
|
+
if (data['round'] && !(typeof data['round'] === 'string' || data['round'] instanceof String)) {
|
|
82
|
+
throw new Error("Expected the field `round` to be a primitive type in the JSON string but got " + data['round']);
|
|
83
|
+
}
|
|
84
|
+
return true;
|
|
85
|
+
}
|
|
86
|
+
}]);
|
|
87
|
+
}();
|
|
88
|
+
/**
|
|
89
|
+
* Divide quantity by this number
|
|
90
|
+
* @member {Number} divide_by
|
|
91
|
+
*/
|
|
92
|
+
PriceTransformQuantity.prototype['divide_by'] = undefined;
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* up or down
|
|
96
|
+
* @member {String} round
|
|
97
|
+
*/
|
|
98
|
+
PriceTransformQuantity.prototype['round'] = undefined;
|
|
99
|
+
var _default = exports["default"] = PriceTransformQuantity;
|