@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,117 @@
|
|
|
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 _TypesPaymentStatus = _interopRequireDefault(require("./TypesPaymentStatus"));
|
|
9
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
10
|
+
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); }
|
|
11
|
+
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; } } }; }
|
|
12
|
+
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; } }
|
|
13
|
+
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; }
|
|
14
|
+
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
|
15
|
+
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); } }
|
|
16
|
+
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
|
17
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
18
|
+
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); } /**
|
|
19
|
+
* FlexPrice API
|
|
20
|
+
* FlexPrice API Service
|
|
21
|
+
*
|
|
22
|
+
* The version of the OpenAPI document: 1.0
|
|
23
|
+
*
|
|
24
|
+
*
|
|
25
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
26
|
+
* https://openapi-generator.tech
|
|
27
|
+
* Do not edit the class manually.
|
|
28
|
+
*
|
|
29
|
+
*/
|
|
30
|
+
/**
|
|
31
|
+
* The DtoUpdatePaymentStatusRequest model module.
|
|
32
|
+
* @module model/DtoUpdatePaymentStatusRequest
|
|
33
|
+
* @version 1.0
|
|
34
|
+
*/
|
|
35
|
+
var DtoUpdatePaymentStatusRequest = /*#__PURE__*/function () {
|
|
36
|
+
/**
|
|
37
|
+
* Constructs a new <code>DtoUpdatePaymentStatusRequest</code>.
|
|
38
|
+
* @alias module:model/DtoUpdatePaymentStatusRequest
|
|
39
|
+
* @param paymentStatus {module:model/TypesPaymentStatus}
|
|
40
|
+
*/
|
|
41
|
+
function DtoUpdatePaymentStatusRequest(paymentStatus) {
|
|
42
|
+
_classCallCheck(this, DtoUpdatePaymentStatusRequest);
|
|
43
|
+
DtoUpdatePaymentStatusRequest.initialize(this, paymentStatus);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Initializes the fields of this object.
|
|
48
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
49
|
+
* Only for internal use.
|
|
50
|
+
*/
|
|
51
|
+
return _createClass(DtoUpdatePaymentStatusRequest, null, [{
|
|
52
|
+
key: "initialize",
|
|
53
|
+
value: function initialize(obj, paymentStatus) {
|
|
54
|
+
obj['payment_status'] = paymentStatus;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Constructs a <code>DtoUpdatePaymentStatusRequest</code> from a plain JavaScript object, optionally creating a new instance.
|
|
59
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
60
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
61
|
+
* @param {module:model/DtoUpdatePaymentStatusRequest} obj Optional instance to populate.
|
|
62
|
+
* @return {module:model/DtoUpdatePaymentStatusRequest} The populated <code>DtoUpdatePaymentStatusRequest</code> instance.
|
|
63
|
+
*/
|
|
64
|
+
}, {
|
|
65
|
+
key: "constructFromObject",
|
|
66
|
+
value: function constructFromObject(data, obj) {
|
|
67
|
+
if (data) {
|
|
68
|
+
obj = obj || new DtoUpdatePaymentStatusRequest();
|
|
69
|
+
if (data.hasOwnProperty('amount')) {
|
|
70
|
+
obj['amount'] = _ApiClient["default"].convertToType(data['amount'], 'Number');
|
|
71
|
+
}
|
|
72
|
+
if (data.hasOwnProperty('payment_status')) {
|
|
73
|
+
obj['payment_status'] = _TypesPaymentStatus["default"].constructFromObject(data['payment_status']);
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
return obj;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* Validates the JSON data with respect to <code>DtoUpdatePaymentStatusRequest</code>.
|
|
81
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
82
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>DtoUpdatePaymentStatusRequest</code>.
|
|
83
|
+
*/
|
|
84
|
+
}, {
|
|
85
|
+
key: "validateJSON",
|
|
86
|
+
value: function validateJSON(data) {
|
|
87
|
+
// check to make sure all required properties are present in the JSON string
|
|
88
|
+
var _iterator = _createForOfIteratorHelper(DtoUpdatePaymentStatusRequest.RequiredProperties),
|
|
89
|
+
_step;
|
|
90
|
+
try {
|
|
91
|
+
for (_iterator.s(); !(_step = _iterator.n()).done;) {
|
|
92
|
+
var property = _step.value;
|
|
93
|
+
if (!data.hasOwnProperty(property)) {
|
|
94
|
+
throw new Error("The required field `" + property + "` is not found in the JSON data: " + JSON.stringify(data));
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
} catch (err) {
|
|
98
|
+
_iterator.e(err);
|
|
99
|
+
} finally {
|
|
100
|
+
_iterator.f();
|
|
101
|
+
}
|
|
102
|
+
return true;
|
|
103
|
+
}
|
|
104
|
+
}]);
|
|
105
|
+
}();
|
|
106
|
+
DtoUpdatePaymentStatusRequest.RequiredProperties = ["payment_status"];
|
|
107
|
+
|
|
108
|
+
/**
|
|
109
|
+
* @member {Number} amount
|
|
110
|
+
*/
|
|
111
|
+
DtoUpdatePaymentStatusRequest.prototype['amount'] = undefined;
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* @member {module:model/TypesPaymentStatus} payment_status
|
|
115
|
+
*/
|
|
116
|
+
DtoUpdatePaymentStatusRequest.prototype['payment_status'] = undefined;
|
|
117
|
+
var _default = exports["default"] = DtoUpdatePaymentStatusRequest;
|
|
@@ -0,0 +1,193 @@
|
|
|
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 _TypesBillingPeriod = _interopRequireDefault(require("./TypesBillingPeriod"));
|
|
9
|
+
var _TypesFeatureType = _interopRequireDefault(require("./TypesFeatureType"));
|
|
10
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
11
|
+
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); }
|
|
12
|
+
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; } } }; }
|
|
13
|
+
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; } }
|
|
14
|
+
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; }
|
|
15
|
+
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
|
16
|
+
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); } }
|
|
17
|
+
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
|
18
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
19
|
+
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); } /**
|
|
20
|
+
* FlexPrice API
|
|
21
|
+
* FlexPrice API Service
|
|
22
|
+
*
|
|
23
|
+
* The version of the OpenAPI document: 1.0
|
|
24
|
+
*
|
|
25
|
+
*
|
|
26
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
27
|
+
* https://openapi-generator.tech
|
|
28
|
+
* Do not edit the class manually.
|
|
29
|
+
*
|
|
30
|
+
*/
|
|
31
|
+
/**
|
|
32
|
+
* The DtoUpdatePlanEntitlementRequest model module.
|
|
33
|
+
* @module model/DtoUpdatePlanEntitlementRequest
|
|
34
|
+
* @version 1.0
|
|
35
|
+
*/
|
|
36
|
+
var DtoUpdatePlanEntitlementRequest = /*#__PURE__*/function () {
|
|
37
|
+
/**
|
|
38
|
+
* Constructs a new <code>DtoUpdatePlanEntitlementRequest</code>.
|
|
39
|
+
* @alias module:model/DtoUpdatePlanEntitlementRequest
|
|
40
|
+
* @param featureId {String}
|
|
41
|
+
* @param featureType {module:model/TypesFeatureType}
|
|
42
|
+
*/
|
|
43
|
+
function DtoUpdatePlanEntitlementRequest(featureId, featureType) {
|
|
44
|
+
_classCallCheck(this, DtoUpdatePlanEntitlementRequest);
|
|
45
|
+
DtoUpdatePlanEntitlementRequest.initialize(this, featureId, featureType);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Initializes the fields of this object.
|
|
50
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
51
|
+
* Only for internal use.
|
|
52
|
+
*/
|
|
53
|
+
return _createClass(DtoUpdatePlanEntitlementRequest, null, [{
|
|
54
|
+
key: "initialize",
|
|
55
|
+
value: function initialize(obj, featureId, featureType) {
|
|
56
|
+
obj['feature_id'] = featureId;
|
|
57
|
+
obj['feature_type'] = featureType;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* Constructs a <code>DtoUpdatePlanEntitlementRequest</code> from a plain JavaScript object, optionally creating a new instance.
|
|
62
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
63
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
64
|
+
* @param {module:model/DtoUpdatePlanEntitlementRequest} obj Optional instance to populate.
|
|
65
|
+
* @return {module:model/DtoUpdatePlanEntitlementRequest} The populated <code>DtoUpdatePlanEntitlementRequest</code> instance.
|
|
66
|
+
*/
|
|
67
|
+
}, {
|
|
68
|
+
key: "constructFromObject",
|
|
69
|
+
value: function constructFromObject(data, obj) {
|
|
70
|
+
if (data) {
|
|
71
|
+
obj = obj || new DtoUpdatePlanEntitlementRequest();
|
|
72
|
+
if (data.hasOwnProperty('feature_id')) {
|
|
73
|
+
obj['feature_id'] = _ApiClient["default"].convertToType(data['feature_id'], 'String');
|
|
74
|
+
}
|
|
75
|
+
if (data.hasOwnProperty('feature_type')) {
|
|
76
|
+
obj['feature_type'] = _TypesFeatureType["default"].constructFromObject(data['feature_type']);
|
|
77
|
+
}
|
|
78
|
+
if (data.hasOwnProperty('id')) {
|
|
79
|
+
obj['id'] = _ApiClient["default"].convertToType(data['id'], 'String');
|
|
80
|
+
}
|
|
81
|
+
if (data.hasOwnProperty('is_enabled')) {
|
|
82
|
+
obj['is_enabled'] = _ApiClient["default"].convertToType(data['is_enabled'], 'Boolean');
|
|
83
|
+
}
|
|
84
|
+
if (data.hasOwnProperty('is_soft_limit')) {
|
|
85
|
+
obj['is_soft_limit'] = _ApiClient["default"].convertToType(data['is_soft_limit'], 'Boolean');
|
|
86
|
+
}
|
|
87
|
+
if (data.hasOwnProperty('plan_id')) {
|
|
88
|
+
obj['plan_id'] = _ApiClient["default"].convertToType(data['plan_id'], 'String');
|
|
89
|
+
}
|
|
90
|
+
if (data.hasOwnProperty('static_value')) {
|
|
91
|
+
obj['static_value'] = _ApiClient["default"].convertToType(data['static_value'], 'String');
|
|
92
|
+
}
|
|
93
|
+
if (data.hasOwnProperty('usage_limit')) {
|
|
94
|
+
obj['usage_limit'] = _ApiClient["default"].convertToType(data['usage_limit'], 'Number');
|
|
95
|
+
}
|
|
96
|
+
if (data.hasOwnProperty('usage_reset_period')) {
|
|
97
|
+
obj['usage_reset_period'] = _TypesBillingPeriod["default"].constructFromObject(data['usage_reset_period']);
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
return obj;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* Validates the JSON data with respect to <code>DtoUpdatePlanEntitlementRequest</code>.
|
|
105
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
106
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>DtoUpdatePlanEntitlementRequest</code>.
|
|
107
|
+
*/
|
|
108
|
+
}, {
|
|
109
|
+
key: "validateJSON",
|
|
110
|
+
value: function validateJSON(data) {
|
|
111
|
+
// check to make sure all required properties are present in the JSON string
|
|
112
|
+
var _iterator = _createForOfIteratorHelper(DtoUpdatePlanEntitlementRequest.RequiredProperties),
|
|
113
|
+
_step;
|
|
114
|
+
try {
|
|
115
|
+
for (_iterator.s(); !(_step = _iterator.n()).done;) {
|
|
116
|
+
var property = _step.value;
|
|
117
|
+
if (!data.hasOwnProperty(property)) {
|
|
118
|
+
throw new Error("The required field `" + property + "` is not found in the JSON data: " + JSON.stringify(data));
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
// ensure the json data is a string
|
|
122
|
+
} catch (err) {
|
|
123
|
+
_iterator.e(err);
|
|
124
|
+
} finally {
|
|
125
|
+
_iterator.f();
|
|
126
|
+
}
|
|
127
|
+
if (data['feature_id'] && !(typeof data['feature_id'] === 'string' || data['feature_id'] instanceof String)) {
|
|
128
|
+
throw new Error("Expected the field `feature_id` to be a primitive type in the JSON string but got " + data['feature_id']);
|
|
129
|
+
}
|
|
130
|
+
// ensure the json data is a string
|
|
131
|
+
if (data['id'] && !(typeof data['id'] === 'string' || data['id'] instanceof String)) {
|
|
132
|
+
throw new Error("Expected the field `id` to be a primitive type in the JSON string but got " + data['id']);
|
|
133
|
+
}
|
|
134
|
+
// ensure the json data is a string
|
|
135
|
+
if (data['plan_id'] && !(typeof data['plan_id'] === 'string' || data['plan_id'] instanceof String)) {
|
|
136
|
+
throw new Error("Expected the field `plan_id` to be a primitive type in the JSON string but got " + data['plan_id']);
|
|
137
|
+
}
|
|
138
|
+
// ensure the json data is a string
|
|
139
|
+
if (data['static_value'] && !(typeof data['static_value'] === 'string' || data['static_value'] instanceof String)) {
|
|
140
|
+
throw new Error("Expected the field `static_value` to be a primitive type in the JSON string but got " + data['static_value']);
|
|
141
|
+
}
|
|
142
|
+
return true;
|
|
143
|
+
}
|
|
144
|
+
}]);
|
|
145
|
+
}();
|
|
146
|
+
DtoUpdatePlanEntitlementRequest.RequiredProperties = ["feature_id", "feature_type"];
|
|
147
|
+
|
|
148
|
+
/**
|
|
149
|
+
* @member {String} feature_id
|
|
150
|
+
*/
|
|
151
|
+
DtoUpdatePlanEntitlementRequest.prototype['feature_id'] = undefined;
|
|
152
|
+
|
|
153
|
+
/**
|
|
154
|
+
* @member {module:model/TypesFeatureType} feature_type
|
|
155
|
+
*/
|
|
156
|
+
DtoUpdatePlanEntitlementRequest.prototype['feature_type'] = undefined;
|
|
157
|
+
|
|
158
|
+
/**
|
|
159
|
+
* The ID of the entitlement to update (present if the entitlement is being updated)
|
|
160
|
+
* @member {String} id
|
|
161
|
+
*/
|
|
162
|
+
DtoUpdatePlanEntitlementRequest.prototype['id'] = undefined;
|
|
163
|
+
|
|
164
|
+
/**
|
|
165
|
+
* @member {Boolean} is_enabled
|
|
166
|
+
*/
|
|
167
|
+
DtoUpdatePlanEntitlementRequest.prototype['is_enabled'] = undefined;
|
|
168
|
+
|
|
169
|
+
/**
|
|
170
|
+
* @member {Boolean} is_soft_limit
|
|
171
|
+
*/
|
|
172
|
+
DtoUpdatePlanEntitlementRequest.prototype['is_soft_limit'] = undefined;
|
|
173
|
+
|
|
174
|
+
/**
|
|
175
|
+
* @member {String} plan_id
|
|
176
|
+
*/
|
|
177
|
+
DtoUpdatePlanEntitlementRequest.prototype['plan_id'] = undefined;
|
|
178
|
+
|
|
179
|
+
/**
|
|
180
|
+
* @member {String} static_value
|
|
181
|
+
*/
|
|
182
|
+
DtoUpdatePlanEntitlementRequest.prototype['static_value'] = undefined;
|
|
183
|
+
|
|
184
|
+
/**
|
|
185
|
+
* @member {Number} usage_limit
|
|
186
|
+
*/
|
|
187
|
+
DtoUpdatePlanEntitlementRequest.prototype['usage_limit'] = undefined;
|
|
188
|
+
|
|
189
|
+
/**
|
|
190
|
+
* @member {module:model/TypesBillingPeriod} usage_reset_period
|
|
191
|
+
*/
|
|
192
|
+
DtoUpdatePlanEntitlementRequest.prototype['usage_reset_period'] = undefined;
|
|
193
|
+
var _default = exports["default"] = DtoUpdatePlanEntitlementRequest;
|
|
@@ -0,0 +1,331 @@
|
|
|
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 _DtoCreatePriceTier = _interopRequireDefault(require("./DtoCreatePriceTier"));
|
|
9
|
+
var _PriceTransformQuantity = _interopRequireDefault(require("./PriceTransformQuantity"));
|
|
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
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
17
|
+
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); }
|
|
18
|
+
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; } } }; }
|
|
19
|
+
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; } }
|
|
20
|
+
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; }
|
|
21
|
+
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
|
22
|
+
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); } }
|
|
23
|
+
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
|
24
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
25
|
+
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); } /**
|
|
26
|
+
* FlexPrice API
|
|
27
|
+
* FlexPrice API Service
|
|
28
|
+
*
|
|
29
|
+
* The version of the OpenAPI document: 1.0
|
|
30
|
+
*
|
|
31
|
+
*
|
|
32
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
33
|
+
* https://openapi-generator.tech
|
|
34
|
+
* Do not edit the class manually.
|
|
35
|
+
*
|
|
36
|
+
*/
|
|
37
|
+
/**
|
|
38
|
+
* The DtoUpdatePlanPriceRequest model module.
|
|
39
|
+
* @module model/DtoUpdatePlanPriceRequest
|
|
40
|
+
* @version 1.0
|
|
41
|
+
*/
|
|
42
|
+
var DtoUpdatePlanPriceRequest = /*#__PURE__*/function () {
|
|
43
|
+
/**
|
|
44
|
+
* Constructs a new <code>DtoUpdatePlanPriceRequest</code>.
|
|
45
|
+
* @alias module:model/DtoUpdatePlanPriceRequest
|
|
46
|
+
* @param billingCadence {module:model/TypesBillingCadence}
|
|
47
|
+
* @param billingModel {module:model/TypesBillingModel}
|
|
48
|
+
* @param billingPeriod {module:model/TypesBillingPeriod}
|
|
49
|
+
* @param billingPeriodCount {Number}
|
|
50
|
+
* @param currency {String}
|
|
51
|
+
* @param invoiceCadence {module:model/TypesInvoiceCadence}
|
|
52
|
+
* @param type {module:model/TypesPriceType}
|
|
53
|
+
*/
|
|
54
|
+
function DtoUpdatePlanPriceRequest(billingCadence, billingModel, billingPeriod, billingPeriodCount, currency, invoiceCadence, type) {
|
|
55
|
+
_classCallCheck(this, DtoUpdatePlanPriceRequest);
|
|
56
|
+
DtoUpdatePlanPriceRequest.initialize(this, billingCadence, billingModel, billingPeriod, billingPeriodCount, currency, invoiceCadence, type);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Initializes the fields of this object.
|
|
61
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
62
|
+
* Only for internal use.
|
|
63
|
+
*/
|
|
64
|
+
return _createClass(DtoUpdatePlanPriceRequest, null, [{
|
|
65
|
+
key: "initialize",
|
|
66
|
+
value: function initialize(obj, billingCadence, billingModel, billingPeriod, billingPeriodCount, currency, invoiceCadence, type) {
|
|
67
|
+
obj['billing_cadence'] = billingCadence;
|
|
68
|
+
obj['billing_model'] = billingModel;
|
|
69
|
+
obj['billing_period'] = billingPeriod;
|
|
70
|
+
obj['billing_period_count'] = billingPeriodCount;
|
|
71
|
+
obj['currency'] = currency;
|
|
72
|
+
obj['invoice_cadence'] = invoiceCadence;
|
|
73
|
+
obj['type'] = type;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* Constructs a <code>DtoUpdatePlanPriceRequest</code> from a plain JavaScript object, optionally creating a new instance.
|
|
78
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
79
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
80
|
+
* @param {module:model/DtoUpdatePlanPriceRequest} obj Optional instance to populate.
|
|
81
|
+
* @return {module:model/DtoUpdatePlanPriceRequest} The populated <code>DtoUpdatePlanPriceRequest</code> instance.
|
|
82
|
+
*/
|
|
83
|
+
}, {
|
|
84
|
+
key: "constructFromObject",
|
|
85
|
+
value: function constructFromObject(data, obj) {
|
|
86
|
+
if (data) {
|
|
87
|
+
obj = obj || new DtoUpdatePlanPriceRequest();
|
|
88
|
+
if (data.hasOwnProperty('amount')) {
|
|
89
|
+
obj['amount'] = _ApiClient["default"].convertToType(data['amount'], 'String');
|
|
90
|
+
}
|
|
91
|
+
if (data.hasOwnProperty('billing_cadence')) {
|
|
92
|
+
obj['billing_cadence'] = _TypesBillingCadence["default"].constructFromObject(data['billing_cadence']);
|
|
93
|
+
}
|
|
94
|
+
if (data.hasOwnProperty('billing_model')) {
|
|
95
|
+
obj['billing_model'] = _TypesBillingModel["default"].constructFromObject(data['billing_model']);
|
|
96
|
+
}
|
|
97
|
+
if (data.hasOwnProperty('billing_period')) {
|
|
98
|
+
obj['billing_period'] = _TypesBillingPeriod["default"].constructFromObject(data['billing_period']);
|
|
99
|
+
}
|
|
100
|
+
if (data.hasOwnProperty('billing_period_count')) {
|
|
101
|
+
obj['billing_period_count'] = _ApiClient["default"].convertToType(data['billing_period_count'], 'Number');
|
|
102
|
+
}
|
|
103
|
+
if (data.hasOwnProperty('currency')) {
|
|
104
|
+
obj['currency'] = _ApiClient["default"].convertToType(data['currency'], 'String');
|
|
105
|
+
}
|
|
106
|
+
if (data.hasOwnProperty('description')) {
|
|
107
|
+
obj['description'] = _ApiClient["default"].convertToType(data['description'], 'String');
|
|
108
|
+
}
|
|
109
|
+
if (data.hasOwnProperty('filter_values')) {
|
|
110
|
+
obj['filter_values'] = _ApiClient["default"].convertToType(data['filter_values'], {
|
|
111
|
+
'String': ['String']
|
|
112
|
+
});
|
|
113
|
+
}
|
|
114
|
+
if (data.hasOwnProperty('id')) {
|
|
115
|
+
obj['id'] = _ApiClient["default"].convertToType(data['id'], 'String');
|
|
116
|
+
}
|
|
117
|
+
if (data.hasOwnProperty('invoice_cadence')) {
|
|
118
|
+
obj['invoice_cadence'] = _TypesInvoiceCadence["default"].constructFromObject(data['invoice_cadence']);
|
|
119
|
+
}
|
|
120
|
+
if (data.hasOwnProperty('lookup_key')) {
|
|
121
|
+
obj['lookup_key'] = _ApiClient["default"].convertToType(data['lookup_key'], 'String');
|
|
122
|
+
}
|
|
123
|
+
if (data.hasOwnProperty('metadata')) {
|
|
124
|
+
obj['metadata'] = _ApiClient["default"].convertToType(data['metadata'], {
|
|
125
|
+
'String': 'String'
|
|
126
|
+
});
|
|
127
|
+
}
|
|
128
|
+
if (data.hasOwnProperty('meter_id')) {
|
|
129
|
+
obj['meter_id'] = _ApiClient["default"].convertToType(data['meter_id'], 'String');
|
|
130
|
+
}
|
|
131
|
+
if (data.hasOwnProperty('plan_id')) {
|
|
132
|
+
obj['plan_id'] = _ApiClient["default"].convertToType(data['plan_id'], 'String');
|
|
133
|
+
}
|
|
134
|
+
if (data.hasOwnProperty('tier_mode')) {
|
|
135
|
+
obj['tier_mode'] = _TypesBillingTier["default"].constructFromObject(data['tier_mode']);
|
|
136
|
+
}
|
|
137
|
+
if (data.hasOwnProperty('tiers')) {
|
|
138
|
+
obj['tiers'] = _ApiClient["default"].convertToType(data['tiers'], [_DtoCreatePriceTier["default"]]);
|
|
139
|
+
}
|
|
140
|
+
if (data.hasOwnProperty('transform_quantity')) {
|
|
141
|
+
obj['transform_quantity'] = _PriceTransformQuantity["default"].constructFromObject(data['transform_quantity']);
|
|
142
|
+
}
|
|
143
|
+
if (data.hasOwnProperty('trial_period')) {
|
|
144
|
+
obj['trial_period'] = _ApiClient["default"].convertToType(data['trial_period'], 'Number');
|
|
145
|
+
}
|
|
146
|
+
if (data.hasOwnProperty('type')) {
|
|
147
|
+
obj['type'] = _TypesPriceType["default"].constructFromObject(data['type']);
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
return obj;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
/**
|
|
154
|
+
* Validates the JSON data with respect to <code>DtoUpdatePlanPriceRequest</code>.
|
|
155
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
156
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>DtoUpdatePlanPriceRequest</code>.
|
|
157
|
+
*/
|
|
158
|
+
}, {
|
|
159
|
+
key: "validateJSON",
|
|
160
|
+
value: function validateJSON(data) {
|
|
161
|
+
// check to make sure all required properties are present in the JSON string
|
|
162
|
+
var _iterator = _createForOfIteratorHelper(DtoUpdatePlanPriceRequest.RequiredProperties),
|
|
163
|
+
_step;
|
|
164
|
+
try {
|
|
165
|
+
for (_iterator.s(); !(_step = _iterator.n()).done;) {
|
|
166
|
+
var property = _step.value;
|
|
167
|
+
if (!data.hasOwnProperty(property)) {
|
|
168
|
+
throw new Error("The required field `" + property + "` is not found in the JSON data: " + JSON.stringify(data));
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
// ensure the json data is a string
|
|
172
|
+
} catch (err) {
|
|
173
|
+
_iterator.e(err);
|
|
174
|
+
} finally {
|
|
175
|
+
_iterator.f();
|
|
176
|
+
}
|
|
177
|
+
if (data['amount'] && !(typeof data['amount'] === 'string' || data['amount'] instanceof String)) {
|
|
178
|
+
throw new Error("Expected the field `amount` to be a primitive type in the JSON string but got " + data['amount']);
|
|
179
|
+
}
|
|
180
|
+
// ensure the json data is a string
|
|
181
|
+
if (data['currency'] && !(typeof data['currency'] === 'string' || data['currency'] instanceof String)) {
|
|
182
|
+
throw new Error("Expected the field `currency` to be a primitive type in the JSON string but got " + data['currency']);
|
|
183
|
+
}
|
|
184
|
+
// ensure the json data is a string
|
|
185
|
+
if (data['description'] && !(typeof data['description'] === 'string' || data['description'] instanceof String)) {
|
|
186
|
+
throw new Error("Expected the field `description` to be a primitive type in the JSON string but got " + data['description']);
|
|
187
|
+
}
|
|
188
|
+
// ensure the json data is a string
|
|
189
|
+
if (data['id'] && !(typeof data['id'] === 'string' || data['id'] instanceof String)) {
|
|
190
|
+
throw new Error("Expected the field `id` to be a primitive type in the JSON string but got " + data['id']);
|
|
191
|
+
}
|
|
192
|
+
// ensure the json data is a string
|
|
193
|
+
if (data['lookup_key'] && !(typeof data['lookup_key'] === 'string' || data['lookup_key'] instanceof String)) {
|
|
194
|
+
throw new Error("Expected the field `lookup_key` to be a primitive type in the JSON string but got " + data['lookup_key']);
|
|
195
|
+
}
|
|
196
|
+
// ensure the json data is a string
|
|
197
|
+
if (data['meter_id'] && !(typeof data['meter_id'] === 'string' || data['meter_id'] instanceof String)) {
|
|
198
|
+
throw new Error("Expected the field `meter_id` to be a primitive type in the JSON string but got " + data['meter_id']);
|
|
199
|
+
}
|
|
200
|
+
// ensure the json data is a string
|
|
201
|
+
if (data['plan_id'] && !(typeof data['plan_id'] === 'string' || data['plan_id'] instanceof String)) {
|
|
202
|
+
throw new Error("Expected the field `plan_id` to be a primitive type in the JSON string but got " + data['plan_id']);
|
|
203
|
+
}
|
|
204
|
+
if (data['tiers']) {
|
|
205
|
+
// data not null
|
|
206
|
+
// ensure the json data is an array
|
|
207
|
+
if (!Array.isArray(data['tiers'])) {
|
|
208
|
+
throw new Error("Expected the field `tiers` to be an array in the JSON data but got " + data['tiers']);
|
|
209
|
+
}
|
|
210
|
+
// validate the optional field `tiers` (array)
|
|
211
|
+
var _iterator2 = _createForOfIteratorHelper(data['tiers']),
|
|
212
|
+
_step2;
|
|
213
|
+
try {
|
|
214
|
+
for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {
|
|
215
|
+
var item = _step2.value;
|
|
216
|
+
_DtoCreatePriceTier["default"].validateJSON(item);
|
|
217
|
+
}
|
|
218
|
+
} catch (err) {
|
|
219
|
+
_iterator2.e(err);
|
|
220
|
+
} finally {
|
|
221
|
+
_iterator2.f();
|
|
222
|
+
}
|
|
223
|
+
;
|
|
224
|
+
}
|
|
225
|
+
// validate the optional field `transform_quantity`
|
|
226
|
+
if (data['transform_quantity']) {
|
|
227
|
+
// data not null
|
|
228
|
+
_PriceTransformQuantity["default"].validateJSON(data['transform_quantity']);
|
|
229
|
+
}
|
|
230
|
+
return true;
|
|
231
|
+
}
|
|
232
|
+
}]);
|
|
233
|
+
}();
|
|
234
|
+
DtoUpdatePlanPriceRequest.RequiredProperties = ["billing_cadence", "billing_model", "billing_period", "billing_period_count", "currency", "invoice_cadence", "type"];
|
|
235
|
+
|
|
236
|
+
/**
|
|
237
|
+
* @member {String} amount
|
|
238
|
+
*/
|
|
239
|
+
DtoUpdatePlanPriceRequest.prototype['amount'] = undefined;
|
|
240
|
+
|
|
241
|
+
/**
|
|
242
|
+
* @member {module:model/TypesBillingCadence} billing_cadence
|
|
243
|
+
*/
|
|
244
|
+
DtoUpdatePlanPriceRequest.prototype['billing_cadence'] = undefined;
|
|
245
|
+
|
|
246
|
+
/**
|
|
247
|
+
* @member {module:model/TypesBillingModel} billing_model
|
|
248
|
+
*/
|
|
249
|
+
DtoUpdatePlanPriceRequest.prototype['billing_model'] = undefined;
|
|
250
|
+
|
|
251
|
+
/**
|
|
252
|
+
* @member {module:model/TypesBillingPeriod} billing_period
|
|
253
|
+
*/
|
|
254
|
+
DtoUpdatePlanPriceRequest.prototype['billing_period'] = undefined;
|
|
255
|
+
|
|
256
|
+
/**
|
|
257
|
+
* @member {Number} billing_period_count
|
|
258
|
+
*/
|
|
259
|
+
DtoUpdatePlanPriceRequest.prototype['billing_period_count'] = undefined;
|
|
260
|
+
|
|
261
|
+
/**
|
|
262
|
+
* @member {String} currency
|
|
263
|
+
*/
|
|
264
|
+
DtoUpdatePlanPriceRequest.prototype['currency'] = undefined;
|
|
265
|
+
|
|
266
|
+
/**
|
|
267
|
+
* @member {String} description
|
|
268
|
+
*/
|
|
269
|
+
DtoUpdatePlanPriceRequest.prototype['description'] = undefined;
|
|
270
|
+
|
|
271
|
+
/**
|
|
272
|
+
* @member {Object.<String, Array.<String>>} filter_values
|
|
273
|
+
*/
|
|
274
|
+
DtoUpdatePlanPriceRequest.prototype['filter_values'] = undefined;
|
|
275
|
+
|
|
276
|
+
/**
|
|
277
|
+
* The ID of the price to update (present if the price is being updated)
|
|
278
|
+
* @member {String} id
|
|
279
|
+
*/
|
|
280
|
+
DtoUpdatePlanPriceRequest.prototype['id'] = undefined;
|
|
281
|
+
|
|
282
|
+
/**
|
|
283
|
+
* @member {module:model/TypesInvoiceCadence} invoice_cadence
|
|
284
|
+
*/
|
|
285
|
+
DtoUpdatePlanPriceRequest.prototype['invoice_cadence'] = undefined;
|
|
286
|
+
|
|
287
|
+
/**
|
|
288
|
+
* @member {String} lookup_key
|
|
289
|
+
*/
|
|
290
|
+
DtoUpdatePlanPriceRequest.prototype['lookup_key'] = undefined;
|
|
291
|
+
|
|
292
|
+
/**
|
|
293
|
+
* @member {Object.<String, String>} metadata
|
|
294
|
+
*/
|
|
295
|
+
DtoUpdatePlanPriceRequest.prototype['metadata'] = undefined;
|
|
296
|
+
|
|
297
|
+
/**
|
|
298
|
+
* @member {String} meter_id
|
|
299
|
+
*/
|
|
300
|
+
DtoUpdatePlanPriceRequest.prototype['meter_id'] = undefined;
|
|
301
|
+
|
|
302
|
+
/**
|
|
303
|
+
* @member {String} plan_id
|
|
304
|
+
*/
|
|
305
|
+
DtoUpdatePlanPriceRequest.prototype['plan_id'] = undefined;
|
|
306
|
+
|
|
307
|
+
/**
|
|
308
|
+
* @member {module:model/TypesBillingTier} tier_mode
|
|
309
|
+
*/
|
|
310
|
+
DtoUpdatePlanPriceRequest.prototype['tier_mode'] = undefined;
|
|
311
|
+
|
|
312
|
+
/**
|
|
313
|
+
* @member {Array.<module:model/DtoCreatePriceTier>} tiers
|
|
314
|
+
*/
|
|
315
|
+
DtoUpdatePlanPriceRequest.prototype['tiers'] = undefined;
|
|
316
|
+
|
|
317
|
+
/**
|
|
318
|
+
* @member {module:model/PriceTransformQuantity} transform_quantity
|
|
319
|
+
*/
|
|
320
|
+
DtoUpdatePlanPriceRequest.prototype['transform_quantity'] = undefined;
|
|
321
|
+
|
|
322
|
+
/**
|
|
323
|
+
* @member {Number} trial_period
|
|
324
|
+
*/
|
|
325
|
+
DtoUpdatePlanPriceRequest.prototype['trial_period'] = undefined;
|
|
326
|
+
|
|
327
|
+
/**
|
|
328
|
+
* @member {module:model/TypesPriceType} type
|
|
329
|
+
*/
|
|
330
|
+
DtoUpdatePlanPriceRequest.prototype['type'] = undefined;
|
|
331
|
+
var _default = exports["default"] = DtoUpdatePlanPriceRequest;
|