@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,518 @@
|
|
|
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 _DtoCustomerResponse = _interopRequireDefault(require("./DtoCustomerResponse"));
|
|
9
|
+
var _DtoPlanResponse = _interopRequireDefault(require("./DtoPlanResponse"));
|
|
10
|
+
var _SubscriptionSubscriptionLineItem = _interopRequireDefault(require("./SubscriptionSubscriptionLineItem"));
|
|
11
|
+
var _SubscriptionSubscriptionPause = _interopRequireDefault(require("./SubscriptionSubscriptionPause"));
|
|
12
|
+
var _TypesBillingCadence = _interopRequireDefault(require("./TypesBillingCadence"));
|
|
13
|
+
var _TypesBillingPeriod = _interopRequireDefault(require("./TypesBillingPeriod"));
|
|
14
|
+
var _TypesPauseStatus = _interopRequireDefault(require("./TypesPauseStatus"));
|
|
15
|
+
var _TypesStatus = _interopRequireDefault(require("./TypesStatus"));
|
|
16
|
+
var _TypesSubscriptionStatus = _interopRequireDefault(require("./TypesSubscriptionStatus"));
|
|
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 DtoSubscriptionResponse model module.
|
|
40
|
+
* @module model/DtoSubscriptionResponse
|
|
41
|
+
* @version 1.0
|
|
42
|
+
*/
|
|
43
|
+
var DtoSubscriptionResponse = /*#__PURE__*/function () {
|
|
44
|
+
/**
|
|
45
|
+
* Constructs a new <code>DtoSubscriptionResponse</code>.
|
|
46
|
+
* @alias module:model/DtoSubscriptionResponse
|
|
47
|
+
*/
|
|
48
|
+
function DtoSubscriptionResponse() {
|
|
49
|
+
_classCallCheck(this, DtoSubscriptionResponse);
|
|
50
|
+
DtoSubscriptionResponse.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(DtoSubscriptionResponse, null, [{
|
|
59
|
+
key: "initialize",
|
|
60
|
+
value: function initialize(obj) {}
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* Constructs a <code>DtoSubscriptionResponse</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/DtoSubscriptionResponse} obj Optional instance to populate.
|
|
67
|
+
* @return {module:model/DtoSubscriptionResponse} The populated <code>DtoSubscriptionResponse</code> instance.
|
|
68
|
+
*/
|
|
69
|
+
}, {
|
|
70
|
+
key: "constructFromObject",
|
|
71
|
+
value: function constructFromObject(data, obj) {
|
|
72
|
+
if (data) {
|
|
73
|
+
obj = obj || new DtoSubscriptionResponse();
|
|
74
|
+
if (data.hasOwnProperty('active_pause_id')) {
|
|
75
|
+
obj['active_pause_id'] = _ApiClient["default"].convertToType(data['active_pause_id'], 'String');
|
|
76
|
+
}
|
|
77
|
+
if (data.hasOwnProperty('billing_anchor')) {
|
|
78
|
+
obj['billing_anchor'] = _ApiClient["default"].convertToType(data['billing_anchor'], 'String');
|
|
79
|
+
}
|
|
80
|
+
if (data.hasOwnProperty('billing_cadence')) {
|
|
81
|
+
obj['billing_cadence'] = _TypesBillingCadence["default"].constructFromObject(data['billing_cadence']);
|
|
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('cancel_at')) {
|
|
90
|
+
obj['cancel_at'] = _ApiClient["default"].convertToType(data['cancel_at'], 'String');
|
|
91
|
+
}
|
|
92
|
+
if (data.hasOwnProperty('cancel_at_period_end')) {
|
|
93
|
+
obj['cancel_at_period_end'] = _ApiClient["default"].convertToType(data['cancel_at_period_end'], 'Boolean');
|
|
94
|
+
}
|
|
95
|
+
if (data.hasOwnProperty('cancelled_at')) {
|
|
96
|
+
obj['cancelled_at'] = _ApiClient["default"].convertToType(data['cancelled_at'], 'String');
|
|
97
|
+
}
|
|
98
|
+
if (data.hasOwnProperty('created_at')) {
|
|
99
|
+
obj['created_at'] = _ApiClient["default"].convertToType(data['created_at'], 'String');
|
|
100
|
+
}
|
|
101
|
+
if (data.hasOwnProperty('created_by')) {
|
|
102
|
+
obj['created_by'] = _ApiClient["default"].convertToType(data['created_by'], 'String');
|
|
103
|
+
}
|
|
104
|
+
if (data.hasOwnProperty('currency')) {
|
|
105
|
+
obj['currency'] = _ApiClient["default"].convertToType(data['currency'], 'String');
|
|
106
|
+
}
|
|
107
|
+
if (data.hasOwnProperty('current_period_end')) {
|
|
108
|
+
obj['current_period_end'] = _ApiClient["default"].convertToType(data['current_period_end'], 'String');
|
|
109
|
+
}
|
|
110
|
+
if (data.hasOwnProperty('current_period_start')) {
|
|
111
|
+
obj['current_period_start'] = _ApiClient["default"].convertToType(data['current_period_start'], 'String');
|
|
112
|
+
}
|
|
113
|
+
if (data.hasOwnProperty('customer')) {
|
|
114
|
+
obj['customer'] = _DtoCustomerResponse["default"].constructFromObject(data['customer']);
|
|
115
|
+
}
|
|
116
|
+
if (data.hasOwnProperty('customer_id')) {
|
|
117
|
+
obj['customer_id'] = _ApiClient["default"].convertToType(data['customer_id'], 'String');
|
|
118
|
+
}
|
|
119
|
+
if (data.hasOwnProperty('end_date')) {
|
|
120
|
+
obj['end_date'] = _ApiClient["default"].convertToType(data['end_date'], 'String');
|
|
121
|
+
}
|
|
122
|
+
if (data.hasOwnProperty('environment_id')) {
|
|
123
|
+
obj['environment_id'] = _ApiClient["default"].convertToType(data['environment_id'], 'String');
|
|
124
|
+
}
|
|
125
|
+
if (data.hasOwnProperty('id')) {
|
|
126
|
+
obj['id'] = _ApiClient["default"].convertToType(data['id'], 'String');
|
|
127
|
+
}
|
|
128
|
+
if (data.hasOwnProperty('line_items')) {
|
|
129
|
+
obj['line_items'] = _ApiClient["default"].convertToType(data['line_items'], [_SubscriptionSubscriptionLineItem["default"]]);
|
|
130
|
+
}
|
|
131
|
+
if (data.hasOwnProperty('lookup_key')) {
|
|
132
|
+
obj['lookup_key'] = _ApiClient["default"].convertToType(data['lookup_key'], 'String');
|
|
133
|
+
}
|
|
134
|
+
if (data.hasOwnProperty('metadata')) {
|
|
135
|
+
obj['metadata'] = _ApiClient["default"].convertToType(data['metadata'], {
|
|
136
|
+
'String': 'String'
|
|
137
|
+
});
|
|
138
|
+
}
|
|
139
|
+
if (data.hasOwnProperty('pause_status')) {
|
|
140
|
+
obj['pause_status'] = _TypesPauseStatus["default"].constructFromObject(data['pause_status']);
|
|
141
|
+
}
|
|
142
|
+
if (data.hasOwnProperty('pauses')) {
|
|
143
|
+
obj['pauses'] = _ApiClient["default"].convertToType(data['pauses'], [_SubscriptionSubscriptionPause["default"]]);
|
|
144
|
+
}
|
|
145
|
+
if (data.hasOwnProperty('plan')) {
|
|
146
|
+
obj['plan'] = _DtoPlanResponse["default"].constructFromObject(data['plan']);
|
|
147
|
+
}
|
|
148
|
+
if (data.hasOwnProperty('plan_id')) {
|
|
149
|
+
obj['plan_id'] = _ApiClient["default"].convertToType(data['plan_id'], 'String');
|
|
150
|
+
}
|
|
151
|
+
if (data.hasOwnProperty('start_date')) {
|
|
152
|
+
obj['start_date'] = _ApiClient["default"].convertToType(data['start_date'], 'String');
|
|
153
|
+
}
|
|
154
|
+
if (data.hasOwnProperty('status')) {
|
|
155
|
+
obj['status'] = _TypesStatus["default"].constructFromObject(data['status']);
|
|
156
|
+
}
|
|
157
|
+
if (data.hasOwnProperty('subscription_status')) {
|
|
158
|
+
obj['subscription_status'] = _TypesSubscriptionStatus["default"].constructFromObject(data['subscription_status']);
|
|
159
|
+
}
|
|
160
|
+
if (data.hasOwnProperty('tenant_id')) {
|
|
161
|
+
obj['tenant_id'] = _ApiClient["default"].convertToType(data['tenant_id'], 'String');
|
|
162
|
+
}
|
|
163
|
+
if (data.hasOwnProperty('trial_end')) {
|
|
164
|
+
obj['trial_end'] = _ApiClient["default"].convertToType(data['trial_end'], 'String');
|
|
165
|
+
}
|
|
166
|
+
if (data.hasOwnProperty('trial_start')) {
|
|
167
|
+
obj['trial_start'] = _ApiClient["default"].convertToType(data['trial_start'], 'String');
|
|
168
|
+
}
|
|
169
|
+
if (data.hasOwnProperty('updated_at')) {
|
|
170
|
+
obj['updated_at'] = _ApiClient["default"].convertToType(data['updated_at'], 'String');
|
|
171
|
+
}
|
|
172
|
+
if (data.hasOwnProperty('updated_by')) {
|
|
173
|
+
obj['updated_by'] = _ApiClient["default"].convertToType(data['updated_by'], 'String');
|
|
174
|
+
}
|
|
175
|
+
if (data.hasOwnProperty('version')) {
|
|
176
|
+
obj['version'] = _ApiClient["default"].convertToType(data['version'], 'Number');
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
return obj;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
/**
|
|
183
|
+
* Validates the JSON data with respect to <code>DtoSubscriptionResponse</code>.
|
|
184
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
185
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>DtoSubscriptionResponse</code>.
|
|
186
|
+
*/
|
|
187
|
+
}, {
|
|
188
|
+
key: "validateJSON",
|
|
189
|
+
value: function validateJSON(data) {
|
|
190
|
+
// ensure the json data is a string
|
|
191
|
+
if (data['active_pause_id'] && !(typeof data['active_pause_id'] === 'string' || data['active_pause_id'] instanceof String)) {
|
|
192
|
+
throw new Error("Expected the field `active_pause_id` to be a primitive type in the JSON string but got " + data['active_pause_id']);
|
|
193
|
+
}
|
|
194
|
+
// ensure the json data is a string
|
|
195
|
+
if (data['billing_anchor'] && !(typeof data['billing_anchor'] === 'string' || data['billing_anchor'] instanceof String)) {
|
|
196
|
+
throw new Error("Expected the field `billing_anchor` to be a primitive type in the JSON string but got " + data['billing_anchor']);
|
|
197
|
+
}
|
|
198
|
+
// ensure the json data is a string
|
|
199
|
+
if (data['cancel_at'] && !(typeof data['cancel_at'] === 'string' || data['cancel_at'] instanceof String)) {
|
|
200
|
+
throw new Error("Expected the field `cancel_at` to be a primitive type in the JSON string but got " + data['cancel_at']);
|
|
201
|
+
}
|
|
202
|
+
// ensure the json data is a string
|
|
203
|
+
if (data['cancelled_at'] && !(typeof data['cancelled_at'] === 'string' || data['cancelled_at'] instanceof String)) {
|
|
204
|
+
throw new Error("Expected the field `cancelled_at` to be a primitive type in the JSON string but got " + data['cancelled_at']);
|
|
205
|
+
}
|
|
206
|
+
// ensure the json data is a string
|
|
207
|
+
if (data['created_at'] && !(typeof data['created_at'] === 'string' || data['created_at'] instanceof String)) {
|
|
208
|
+
throw new Error("Expected the field `created_at` to be a primitive type in the JSON string but got " + data['created_at']);
|
|
209
|
+
}
|
|
210
|
+
// ensure the json data is a string
|
|
211
|
+
if (data['created_by'] && !(typeof data['created_by'] === 'string' || data['created_by'] instanceof String)) {
|
|
212
|
+
throw new Error("Expected the field `created_by` to be a primitive type in the JSON string but got " + data['created_by']);
|
|
213
|
+
}
|
|
214
|
+
// ensure the json data is a string
|
|
215
|
+
if (data['currency'] && !(typeof data['currency'] === 'string' || data['currency'] instanceof String)) {
|
|
216
|
+
throw new Error("Expected the field `currency` to be a primitive type in the JSON string but got " + data['currency']);
|
|
217
|
+
}
|
|
218
|
+
// ensure the json data is a string
|
|
219
|
+
if (data['current_period_end'] && !(typeof data['current_period_end'] === 'string' || data['current_period_end'] instanceof String)) {
|
|
220
|
+
throw new Error("Expected the field `current_period_end` to be a primitive type in the JSON string but got " + data['current_period_end']);
|
|
221
|
+
}
|
|
222
|
+
// ensure the json data is a string
|
|
223
|
+
if (data['current_period_start'] && !(typeof data['current_period_start'] === 'string' || data['current_period_start'] instanceof String)) {
|
|
224
|
+
throw new Error("Expected the field `current_period_start` to be a primitive type in the JSON string but got " + data['current_period_start']);
|
|
225
|
+
}
|
|
226
|
+
// validate the optional field `customer`
|
|
227
|
+
if (data['customer']) {
|
|
228
|
+
// data not null
|
|
229
|
+
_DtoCustomerResponse["default"].validateJSON(data['customer']);
|
|
230
|
+
}
|
|
231
|
+
// ensure the json data is a string
|
|
232
|
+
if (data['customer_id'] && !(typeof data['customer_id'] === 'string' || data['customer_id'] instanceof String)) {
|
|
233
|
+
throw new Error("Expected the field `customer_id` to be a primitive type in the JSON string but got " + data['customer_id']);
|
|
234
|
+
}
|
|
235
|
+
// ensure the json data is a string
|
|
236
|
+
if (data['end_date'] && !(typeof data['end_date'] === 'string' || data['end_date'] instanceof String)) {
|
|
237
|
+
throw new Error("Expected the field `end_date` to be a primitive type in the JSON string but got " + data['end_date']);
|
|
238
|
+
}
|
|
239
|
+
// ensure the json data is a string
|
|
240
|
+
if (data['environment_id'] && !(typeof data['environment_id'] === 'string' || data['environment_id'] instanceof String)) {
|
|
241
|
+
throw new Error("Expected the field `environment_id` to be a primitive type in the JSON string but got " + data['environment_id']);
|
|
242
|
+
}
|
|
243
|
+
// ensure the json data is a string
|
|
244
|
+
if (data['id'] && !(typeof data['id'] === 'string' || data['id'] instanceof String)) {
|
|
245
|
+
throw new Error("Expected the field `id` to be a primitive type in the JSON string but got " + data['id']);
|
|
246
|
+
}
|
|
247
|
+
if (data['line_items']) {
|
|
248
|
+
// data not null
|
|
249
|
+
// ensure the json data is an array
|
|
250
|
+
if (!Array.isArray(data['line_items'])) {
|
|
251
|
+
throw new Error("Expected the field `line_items` to be an array in the JSON data but got " + data['line_items']);
|
|
252
|
+
}
|
|
253
|
+
// validate the optional field `line_items` (array)
|
|
254
|
+
var _iterator = _createForOfIteratorHelper(data['line_items']),
|
|
255
|
+
_step;
|
|
256
|
+
try {
|
|
257
|
+
for (_iterator.s(); !(_step = _iterator.n()).done;) {
|
|
258
|
+
var item = _step.value;
|
|
259
|
+
_SubscriptionSubscriptionLineItem["default"].validateJSON(item);
|
|
260
|
+
}
|
|
261
|
+
} catch (err) {
|
|
262
|
+
_iterator.e(err);
|
|
263
|
+
} finally {
|
|
264
|
+
_iterator.f();
|
|
265
|
+
}
|
|
266
|
+
;
|
|
267
|
+
}
|
|
268
|
+
// ensure the json data is a string
|
|
269
|
+
if (data['lookup_key'] && !(typeof data['lookup_key'] === 'string' || data['lookup_key'] instanceof String)) {
|
|
270
|
+
throw new Error("Expected the field `lookup_key` to be a primitive type in the JSON string but got " + data['lookup_key']);
|
|
271
|
+
}
|
|
272
|
+
if (data['pauses']) {
|
|
273
|
+
// data not null
|
|
274
|
+
// ensure the json data is an array
|
|
275
|
+
if (!Array.isArray(data['pauses'])) {
|
|
276
|
+
throw new Error("Expected the field `pauses` to be an array in the JSON data but got " + data['pauses']);
|
|
277
|
+
}
|
|
278
|
+
// validate the optional field `pauses` (array)
|
|
279
|
+
var _iterator2 = _createForOfIteratorHelper(data['pauses']),
|
|
280
|
+
_step2;
|
|
281
|
+
try {
|
|
282
|
+
for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {
|
|
283
|
+
var _item = _step2.value;
|
|
284
|
+
_SubscriptionSubscriptionPause["default"].validateJSON(_item);
|
|
285
|
+
}
|
|
286
|
+
} catch (err) {
|
|
287
|
+
_iterator2.e(err);
|
|
288
|
+
} finally {
|
|
289
|
+
_iterator2.f();
|
|
290
|
+
}
|
|
291
|
+
;
|
|
292
|
+
}
|
|
293
|
+
// validate the optional field `plan`
|
|
294
|
+
if (data['plan']) {
|
|
295
|
+
// data not null
|
|
296
|
+
_DtoPlanResponse["default"].validateJSON(data['plan']);
|
|
297
|
+
}
|
|
298
|
+
// ensure the json data is a string
|
|
299
|
+
if (data['plan_id'] && !(typeof data['plan_id'] === 'string' || data['plan_id'] instanceof String)) {
|
|
300
|
+
throw new Error("Expected the field `plan_id` to be a primitive type in the JSON string but got " + data['plan_id']);
|
|
301
|
+
}
|
|
302
|
+
// ensure the json data is a string
|
|
303
|
+
if (data['start_date'] && !(typeof data['start_date'] === 'string' || data['start_date'] instanceof String)) {
|
|
304
|
+
throw new Error("Expected the field `start_date` to be a primitive type in the JSON string but got " + data['start_date']);
|
|
305
|
+
}
|
|
306
|
+
// ensure the json data is a string
|
|
307
|
+
if (data['tenant_id'] && !(typeof data['tenant_id'] === 'string' || data['tenant_id'] instanceof String)) {
|
|
308
|
+
throw new Error("Expected the field `tenant_id` to be a primitive type in the JSON string but got " + data['tenant_id']);
|
|
309
|
+
}
|
|
310
|
+
// ensure the json data is a string
|
|
311
|
+
if (data['trial_end'] && !(typeof data['trial_end'] === 'string' || data['trial_end'] instanceof String)) {
|
|
312
|
+
throw new Error("Expected the field `trial_end` to be a primitive type in the JSON string but got " + data['trial_end']);
|
|
313
|
+
}
|
|
314
|
+
// ensure the json data is a string
|
|
315
|
+
if (data['trial_start'] && !(typeof data['trial_start'] === 'string' || data['trial_start'] instanceof String)) {
|
|
316
|
+
throw new Error("Expected the field `trial_start` to be a primitive type in the JSON string but got " + data['trial_start']);
|
|
317
|
+
}
|
|
318
|
+
// ensure the json data is a string
|
|
319
|
+
if (data['updated_at'] && !(typeof data['updated_at'] === 'string' || data['updated_at'] instanceof String)) {
|
|
320
|
+
throw new Error("Expected the field `updated_at` to be a primitive type in the JSON string but got " + data['updated_at']);
|
|
321
|
+
}
|
|
322
|
+
// ensure the json data is a string
|
|
323
|
+
if (data['updated_by'] && !(typeof data['updated_by'] === 'string' || data['updated_by'] instanceof String)) {
|
|
324
|
+
throw new Error("Expected the field `updated_by` to be a primitive type in the JSON string but got " + data['updated_by']);
|
|
325
|
+
}
|
|
326
|
+
return true;
|
|
327
|
+
}
|
|
328
|
+
}]);
|
|
329
|
+
}();
|
|
330
|
+
/**
|
|
331
|
+
* ActivePauseID references the current active pause configuration This will be null if no pause is active or scheduled
|
|
332
|
+
* @member {String} active_pause_id
|
|
333
|
+
*/
|
|
334
|
+
DtoSubscriptionResponse.prototype['active_pause_id'] = undefined;
|
|
335
|
+
|
|
336
|
+
/**
|
|
337
|
+
* BillingAnchor is the reference point that aligns future billing cycle dates. It sets the day of week for week intervals, the day of month for month and year intervals, and the month of year for year intervals. The timestamp is in UTC format.
|
|
338
|
+
* @member {String} billing_anchor
|
|
339
|
+
*/
|
|
340
|
+
DtoSubscriptionResponse.prototype['billing_anchor'] = undefined;
|
|
341
|
+
|
|
342
|
+
/**
|
|
343
|
+
* @member {module:model/TypesBillingCadence} billing_cadence
|
|
344
|
+
*/
|
|
345
|
+
DtoSubscriptionResponse.prototype['billing_cadence'] = undefined;
|
|
346
|
+
|
|
347
|
+
/**
|
|
348
|
+
* @member {module:model/TypesBillingPeriod} billing_period
|
|
349
|
+
*/
|
|
350
|
+
DtoSubscriptionResponse.prototype['billing_period'] = undefined;
|
|
351
|
+
|
|
352
|
+
/**
|
|
353
|
+
* BillingPeriodCount is the total number units of the billing period.
|
|
354
|
+
* @member {Number} billing_period_count
|
|
355
|
+
*/
|
|
356
|
+
DtoSubscriptionResponse.prototype['billing_period_count'] = undefined;
|
|
357
|
+
|
|
358
|
+
/**
|
|
359
|
+
* CancelAt is the date the subscription will be canceled
|
|
360
|
+
* @member {String} cancel_at
|
|
361
|
+
*/
|
|
362
|
+
DtoSubscriptionResponse.prototype['cancel_at'] = undefined;
|
|
363
|
+
|
|
364
|
+
/**
|
|
365
|
+
* CancelAtPeriodEnd is whether the subscription was canceled at the end of the current period
|
|
366
|
+
* @member {Boolean} cancel_at_period_end
|
|
367
|
+
*/
|
|
368
|
+
DtoSubscriptionResponse.prototype['cancel_at_period_end'] = undefined;
|
|
369
|
+
|
|
370
|
+
/**
|
|
371
|
+
* CanceledAt is the date the subscription was canceled
|
|
372
|
+
* @member {String} cancelled_at
|
|
373
|
+
*/
|
|
374
|
+
DtoSubscriptionResponse.prototype['cancelled_at'] = undefined;
|
|
375
|
+
|
|
376
|
+
/**
|
|
377
|
+
* @member {String} created_at
|
|
378
|
+
*/
|
|
379
|
+
DtoSubscriptionResponse.prototype['created_at'] = undefined;
|
|
380
|
+
|
|
381
|
+
/**
|
|
382
|
+
* @member {String} created_by
|
|
383
|
+
*/
|
|
384
|
+
DtoSubscriptionResponse.prototype['created_by'] = undefined;
|
|
385
|
+
|
|
386
|
+
/**
|
|
387
|
+
* Currency is the currency of the subscription in lowercase 3 digit ISO codes
|
|
388
|
+
* @member {String} currency
|
|
389
|
+
*/
|
|
390
|
+
DtoSubscriptionResponse.prototype['currency'] = undefined;
|
|
391
|
+
|
|
392
|
+
/**
|
|
393
|
+
* CurrentPeriodEnd is the end of the current period that the subscription has been invoiced for. At the end of this period, a new invoice will be created.
|
|
394
|
+
* @member {String} current_period_end
|
|
395
|
+
*/
|
|
396
|
+
DtoSubscriptionResponse.prototype['current_period_end'] = undefined;
|
|
397
|
+
|
|
398
|
+
/**
|
|
399
|
+
* CurrentPeriodStart is the end of the current period that the subscription has been invoiced for. At the end of this period, a new invoice will be created.
|
|
400
|
+
* @member {String} current_period_start
|
|
401
|
+
*/
|
|
402
|
+
DtoSubscriptionResponse.prototype['current_period_start'] = undefined;
|
|
403
|
+
|
|
404
|
+
/**
|
|
405
|
+
* @member {module:model/DtoCustomerResponse} customer
|
|
406
|
+
*/
|
|
407
|
+
DtoSubscriptionResponse.prototype['customer'] = undefined;
|
|
408
|
+
|
|
409
|
+
/**
|
|
410
|
+
* CustomerID is the identifier for the customer in our system
|
|
411
|
+
* @member {String} customer_id
|
|
412
|
+
*/
|
|
413
|
+
DtoSubscriptionResponse.prototype['customer_id'] = undefined;
|
|
414
|
+
|
|
415
|
+
/**
|
|
416
|
+
* EndDate is the end date of the subscription
|
|
417
|
+
* @member {String} end_date
|
|
418
|
+
*/
|
|
419
|
+
DtoSubscriptionResponse.prototype['end_date'] = undefined;
|
|
420
|
+
|
|
421
|
+
/**
|
|
422
|
+
* EnvironmentID is the environment identifier for the subscription
|
|
423
|
+
* @member {String} environment_id
|
|
424
|
+
*/
|
|
425
|
+
DtoSubscriptionResponse.prototype['environment_id'] = undefined;
|
|
426
|
+
|
|
427
|
+
/**
|
|
428
|
+
* ID is the unique identifier for the subscription
|
|
429
|
+
* @member {String} id
|
|
430
|
+
*/
|
|
431
|
+
DtoSubscriptionResponse.prototype['id'] = undefined;
|
|
432
|
+
|
|
433
|
+
/**
|
|
434
|
+
* @member {Array.<module:model/SubscriptionSubscriptionLineItem>} line_items
|
|
435
|
+
*/
|
|
436
|
+
DtoSubscriptionResponse.prototype['line_items'] = undefined;
|
|
437
|
+
|
|
438
|
+
/**
|
|
439
|
+
* LookupKey is the key used to lookup the subscription in our system
|
|
440
|
+
* @member {String} lookup_key
|
|
441
|
+
*/
|
|
442
|
+
DtoSubscriptionResponse.prototype['lookup_key'] = undefined;
|
|
443
|
+
|
|
444
|
+
/**
|
|
445
|
+
* @member {Object.<String, String>} metadata
|
|
446
|
+
*/
|
|
447
|
+
DtoSubscriptionResponse.prototype['metadata'] = undefined;
|
|
448
|
+
|
|
449
|
+
/**
|
|
450
|
+
* @member {module:model/TypesPauseStatus} pause_status
|
|
451
|
+
*/
|
|
452
|
+
DtoSubscriptionResponse.prototype['pause_status'] = undefined;
|
|
453
|
+
|
|
454
|
+
/**
|
|
455
|
+
* @member {Array.<module:model/SubscriptionSubscriptionPause>} pauses
|
|
456
|
+
*/
|
|
457
|
+
DtoSubscriptionResponse.prototype['pauses'] = undefined;
|
|
458
|
+
|
|
459
|
+
/**
|
|
460
|
+
* @member {module:model/DtoPlanResponse} plan
|
|
461
|
+
*/
|
|
462
|
+
DtoSubscriptionResponse.prototype['plan'] = undefined;
|
|
463
|
+
|
|
464
|
+
/**
|
|
465
|
+
* PlanID is the identifier for the plan in our system
|
|
466
|
+
* @member {String} plan_id
|
|
467
|
+
*/
|
|
468
|
+
DtoSubscriptionResponse.prototype['plan_id'] = undefined;
|
|
469
|
+
|
|
470
|
+
/**
|
|
471
|
+
* StartDate is the start date of the subscription
|
|
472
|
+
* @member {String} start_date
|
|
473
|
+
*/
|
|
474
|
+
DtoSubscriptionResponse.prototype['start_date'] = undefined;
|
|
475
|
+
|
|
476
|
+
/**
|
|
477
|
+
* @member {module:model/TypesStatus} status
|
|
478
|
+
*/
|
|
479
|
+
DtoSubscriptionResponse.prototype['status'] = undefined;
|
|
480
|
+
|
|
481
|
+
/**
|
|
482
|
+
* @member {module:model/TypesSubscriptionStatus} subscription_status
|
|
483
|
+
*/
|
|
484
|
+
DtoSubscriptionResponse.prototype['subscription_status'] = undefined;
|
|
485
|
+
|
|
486
|
+
/**
|
|
487
|
+
* @member {String} tenant_id
|
|
488
|
+
*/
|
|
489
|
+
DtoSubscriptionResponse.prototype['tenant_id'] = undefined;
|
|
490
|
+
|
|
491
|
+
/**
|
|
492
|
+
* TrialEnd is the end date of the trial period
|
|
493
|
+
* @member {String} trial_end
|
|
494
|
+
*/
|
|
495
|
+
DtoSubscriptionResponse.prototype['trial_end'] = undefined;
|
|
496
|
+
|
|
497
|
+
/**
|
|
498
|
+
* TrialStart is the start date of the trial period
|
|
499
|
+
* @member {String} trial_start
|
|
500
|
+
*/
|
|
501
|
+
DtoSubscriptionResponse.prototype['trial_start'] = undefined;
|
|
502
|
+
|
|
503
|
+
/**
|
|
504
|
+
* @member {String} updated_at
|
|
505
|
+
*/
|
|
506
|
+
DtoSubscriptionResponse.prototype['updated_at'] = undefined;
|
|
507
|
+
|
|
508
|
+
/**
|
|
509
|
+
* @member {String} updated_by
|
|
510
|
+
*/
|
|
511
|
+
DtoSubscriptionResponse.prototype['updated_by'] = undefined;
|
|
512
|
+
|
|
513
|
+
/**
|
|
514
|
+
* Version is used for optimistic locking
|
|
515
|
+
* @member {Number} version
|
|
516
|
+
*/
|
|
517
|
+
DtoSubscriptionResponse.prototype['version'] = undefined;
|
|
518
|
+
var _default = exports["default"] = DtoSubscriptionResponse;
|