@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,252 @@
|
|
|
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 _TypesAutoTopupTrigger = _interopRequireDefault(require("./TypesAutoTopupTrigger"));
|
|
9
|
+
var _TypesWalletConfig = _interopRequireDefault(require("./TypesWalletConfig"));
|
|
10
|
+
var _TypesWalletStatus = _interopRequireDefault(require("./TypesWalletStatus"));
|
|
11
|
+
var _TypesWalletType = _interopRequireDefault(require("./TypesWalletType"));
|
|
12
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
13
|
+
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); }
|
|
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 DtoWalletResponse model module.
|
|
32
|
+
* @module model/DtoWalletResponse
|
|
33
|
+
* @version 1.0
|
|
34
|
+
*/
|
|
35
|
+
var DtoWalletResponse = /*#__PURE__*/function () {
|
|
36
|
+
/**
|
|
37
|
+
* Constructs a new <code>DtoWalletResponse</code>.
|
|
38
|
+
* @alias module:model/DtoWalletResponse
|
|
39
|
+
*/
|
|
40
|
+
function DtoWalletResponse() {
|
|
41
|
+
_classCallCheck(this, DtoWalletResponse);
|
|
42
|
+
DtoWalletResponse.initialize(this);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* Initializes the fields of this object.
|
|
47
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
48
|
+
* Only for internal use.
|
|
49
|
+
*/
|
|
50
|
+
return _createClass(DtoWalletResponse, null, [{
|
|
51
|
+
key: "initialize",
|
|
52
|
+
value: function initialize(obj) {}
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Constructs a <code>DtoWalletResponse</code> from a plain JavaScript object, optionally creating a new instance.
|
|
56
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
57
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
58
|
+
* @param {module:model/DtoWalletResponse} obj Optional instance to populate.
|
|
59
|
+
* @return {module:model/DtoWalletResponse} The populated <code>DtoWalletResponse</code> instance.
|
|
60
|
+
*/
|
|
61
|
+
}, {
|
|
62
|
+
key: "constructFromObject",
|
|
63
|
+
value: function constructFromObject(data, obj) {
|
|
64
|
+
if (data) {
|
|
65
|
+
obj = obj || new DtoWalletResponse();
|
|
66
|
+
if (data.hasOwnProperty('auto_topup_amount')) {
|
|
67
|
+
obj['auto_topup_amount'] = _ApiClient["default"].convertToType(data['auto_topup_amount'], 'Number');
|
|
68
|
+
}
|
|
69
|
+
if (data.hasOwnProperty('auto_topup_min_balance')) {
|
|
70
|
+
obj['auto_topup_min_balance'] = _ApiClient["default"].convertToType(data['auto_topup_min_balance'], 'Number');
|
|
71
|
+
}
|
|
72
|
+
if (data.hasOwnProperty('auto_topup_trigger')) {
|
|
73
|
+
obj['auto_topup_trigger'] = _TypesAutoTopupTrigger["default"].constructFromObject(data['auto_topup_trigger']);
|
|
74
|
+
}
|
|
75
|
+
if (data.hasOwnProperty('balance')) {
|
|
76
|
+
obj['balance'] = _ApiClient["default"].convertToType(data['balance'], 'Number');
|
|
77
|
+
}
|
|
78
|
+
if (data.hasOwnProperty('config')) {
|
|
79
|
+
obj['config'] = _TypesWalletConfig["default"].constructFromObject(data['config']);
|
|
80
|
+
}
|
|
81
|
+
if (data.hasOwnProperty('conversion_rate')) {
|
|
82
|
+
obj['conversion_rate'] = _ApiClient["default"].convertToType(data['conversion_rate'], 'Number');
|
|
83
|
+
}
|
|
84
|
+
if (data.hasOwnProperty('created_at')) {
|
|
85
|
+
obj['created_at'] = _ApiClient["default"].convertToType(data['created_at'], 'String');
|
|
86
|
+
}
|
|
87
|
+
if (data.hasOwnProperty('credit_balance')) {
|
|
88
|
+
obj['credit_balance'] = _ApiClient["default"].convertToType(data['credit_balance'], 'Number');
|
|
89
|
+
}
|
|
90
|
+
if (data.hasOwnProperty('currency')) {
|
|
91
|
+
obj['currency'] = _ApiClient["default"].convertToType(data['currency'], 'String');
|
|
92
|
+
}
|
|
93
|
+
if (data.hasOwnProperty('customer_id')) {
|
|
94
|
+
obj['customer_id'] = _ApiClient["default"].convertToType(data['customer_id'], 'String');
|
|
95
|
+
}
|
|
96
|
+
if (data.hasOwnProperty('description')) {
|
|
97
|
+
obj['description'] = _ApiClient["default"].convertToType(data['description'], 'String');
|
|
98
|
+
}
|
|
99
|
+
if (data.hasOwnProperty('id')) {
|
|
100
|
+
obj['id'] = _ApiClient["default"].convertToType(data['id'], 'String');
|
|
101
|
+
}
|
|
102
|
+
if (data.hasOwnProperty('metadata')) {
|
|
103
|
+
obj['metadata'] = _ApiClient["default"].convertToType(data['metadata'], {
|
|
104
|
+
'String': 'String'
|
|
105
|
+
});
|
|
106
|
+
}
|
|
107
|
+
if (data.hasOwnProperty('name')) {
|
|
108
|
+
obj['name'] = _ApiClient["default"].convertToType(data['name'], 'String');
|
|
109
|
+
}
|
|
110
|
+
if (data.hasOwnProperty('updated_at')) {
|
|
111
|
+
obj['updated_at'] = _ApiClient["default"].convertToType(data['updated_at'], 'String');
|
|
112
|
+
}
|
|
113
|
+
if (data.hasOwnProperty('wallet_status')) {
|
|
114
|
+
obj['wallet_status'] = _TypesWalletStatus["default"].constructFromObject(data['wallet_status']);
|
|
115
|
+
}
|
|
116
|
+
if (data.hasOwnProperty('wallet_type')) {
|
|
117
|
+
obj['wallet_type'] = _TypesWalletType["default"].constructFromObject(data['wallet_type']);
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
return obj;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
/**
|
|
124
|
+
* Validates the JSON data with respect to <code>DtoWalletResponse</code>.
|
|
125
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
126
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>DtoWalletResponse</code>.
|
|
127
|
+
*/
|
|
128
|
+
}, {
|
|
129
|
+
key: "validateJSON",
|
|
130
|
+
value: function validateJSON(data) {
|
|
131
|
+
// validate the optional field `config`
|
|
132
|
+
if (data['config']) {
|
|
133
|
+
// data not null
|
|
134
|
+
_TypesWalletConfig["default"].validateJSON(data['config']);
|
|
135
|
+
}
|
|
136
|
+
// ensure the json data is a string
|
|
137
|
+
if (data['created_at'] && !(typeof data['created_at'] === 'string' || data['created_at'] instanceof String)) {
|
|
138
|
+
throw new Error("Expected the field `created_at` to be a primitive type in the JSON string but got " + data['created_at']);
|
|
139
|
+
}
|
|
140
|
+
// ensure the json data is a string
|
|
141
|
+
if (data['currency'] && !(typeof data['currency'] === 'string' || data['currency'] instanceof String)) {
|
|
142
|
+
throw new Error("Expected the field `currency` to be a primitive type in the JSON string but got " + data['currency']);
|
|
143
|
+
}
|
|
144
|
+
// ensure the json data is a string
|
|
145
|
+
if (data['customer_id'] && !(typeof data['customer_id'] === 'string' || data['customer_id'] instanceof String)) {
|
|
146
|
+
throw new Error("Expected the field `customer_id` to be a primitive type in the JSON string but got " + data['customer_id']);
|
|
147
|
+
}
|
|
148
|
+
// ensure the json data is a string
|
|
149
|
+
if (data['description'] && !(typeof data['description'] === 'string' || data['description'] instanceof String)) {
|
|
150
|
+
throw new Error("Expected the field `description` to be a primitive type in the JSON string but got " + data['description']);
|
|
151
|
+
}
|
|
152
|
+
// ensure the json data is a string
|
|
153
|
+
if (data['id'] && !(typeof data['id'] === 'string' || data['id'] instanceof String)) {
|
|
154
|
+
throw new Error("Expected the field `id` to be a primitive type in the JSON string but got " + data['id']);
|
|
155
|
+
}
|
|
156
|
+
// ensure the json data is a string
|
|
157
|
+
if (data['name'] && !(typeof data['name'] === 'string' || data['name'] instanceof String)) {
|
|
158
|
+
throw new Error("Expected the field `name` to be a primitive type in the JSON string but got " + data['name']);
|
|
159
|
+
}
|
|
160
|
+
// ensure the json data is a string
|
|
161
|
+
if (data['updated_at'] && !(typeof data['updated_at'] === 'string' || data['updated_at'] instanceof String)) {
|
|
162
|
+
throw new Error("Expected the field `updated_at` to be a primitive type in the JSON string but got " + data['updated_at']);
|
|
163
|
+
}
|
|
164
|
+
return true;
|
|
165
|
+
}
|
|
166
|
+
}]);
|
|
167
|
+
}();
|
|
168
|
+
/**
|
|
169
|
+
* @member {Number} auto_topup_amount
|
|
170
|
+
*/
|
|
171
|
+
DtoWalletResponse.prototype['auto_topup_amount'] = undefined;
|
|
172
|
+
|
|
173
|
+
/**
|
|
174
|
+
* @member {Number} auto_topup_min_balance
|
|
175
|
+
*/
|
|
176
|
+
DtoWalletResponse.prototype['auto_topup_min_balance'] = undefined;
|
|
177
|
+
|
|
178
|
+
/**
|
|
179
|
+
* @member {module:model/TypesAutoTopupTrigger} auto_topup_trigger
|
|
180
|
+
*/
|
|
181
|
+
DtoWalletResponse.prototype['auto_topup_trigger'] = undefined;
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* @member {Number} balance
|
|
185
|
+
*/
|
|
186
|
+
DtoWalletResponse.prototype['balance'] = undefined;
|
|
187
|
+
|
|
188
|
+
/**
|
|
189
|
+
* @member {module:model/TypesWalletConfig} config
|
|
190
|
+
*/
|
|
191
|
+
DtoWalletResponse.prototype['config'] = undefined;
|
|
192
|
+
|
|
193
|
+
/**
|
|
194
|
+
* @member {Number} conversion_rate
|
|
195
|
+
*/
|
|
196
|
+
DtoWalletResponse.prototype['conversion_rate'] = undefined;
|
|
197
|
+
|
|
198
|
+
/**
|
|
199
|
+
* @member {String} created_at
|
|
200
|
+
*/
|
|
201
|
+
DtoWalletResponse.prototype['created_at'] = undefined;
|
|
202
|
+
|
|
203
|
+
/**
|
|
204
|
+
* @member {Number} credit_balance
|
|
205
|
+
*/
|
|
206
|
+
DtoWalletResponse.prototype['credit_balance'] = undefined;
|
|
207
|
+
|
|
208
|
+
/**
|
|
209
|
+
* @member {String} currency
|
|
210
|
+
*/
|
|
211
|
+
DtoWalletResponse.prototype['currency'] = undefined;
|
|
212
|
+
|
|
213
|
+
/**
|
|
214
|
+
* @member {String} customer_id
|
|
215
|
+
*/
|
|
216
|
+
DtoWalletResponse.prototype['customer_id'] = undefined;
|
|
217
|
+
|
|
218
|
+
/**
|
|
219
|
+
* @member {String} description
|
|
220
|
+
*/
|
|
221
|
+
DtoWalletResponse.prototype['description'] = undefined;
|
|
222
|
+
|
|
223
|
+
/**
|
|
224
|
+
* @member {String} id
|
|
225
|
+
*/
|
|
226
|
+
DtoWalletResponse.prototype['id'] = undefined;
|
|
227
|
+
|
|
228
|
+
/**
|
|
229
|
+
* @member {Object.<String, String>} metadata
|
|
230
|
+
*/
|
|
231
|
+
DtoWalletResponse.prototype['metadata'] = undefined;
|
|
232
|
+
|
|
233
|
+
/**
|
|
234
|
+
* @member {String} name
|
|
235
|
+
*/
|
|
236
|
+
DtoWalletResponse.prototype['name'] = undefined;
|
|
237
|
+
|
|
238
|
+
/**
|
|
239
|
+
* @member {String} updated_at
|
|
240
|
+
*/
|
|
241
|
+
DtoWalletResponse.prototype['updated_at'] = undefined;
|
|
242
|
+
|
|
243
|
+
/**
|
|
244
|
+
* @member {module:model/TypesWalletStatus} wallet_status
|
|
245
|
+
*/
|
|
246
|
+
DtoWalletResponse.prototype['wallet_status'] = undefined;
|
|
247
|
+
|
|
248
|
+
/**
|
|
249
|
+
* @member {module:model/TypesWalletType} wallet_type
|
|
250
|
+
*/
|
|
251
|
+
DtoWalletResponse.prototype['wallet_type'] = undefined;
|
|
252
|
+
var _default = exports["default"] = DtoWalletResponse;
|
|
@@ -0,0 +1,238 @@
|
|
|
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 _TypesTransactionReason = _interopRequireDefault(require("./TypesTransactionReason"));
|
|
9
|
+
var _TypesTransactionStatus = _interopRequireDefault(require("./TypesTransactionStatus"));
|
|
10
|
+
var _TypesWalletTxReferenceType = _interopRequireDefault(require("./TypesWalletTxReferenceType"));
|
|
11
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
12
|
+
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); }
|
|
13
|
+
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
|
14
|
+
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); } }
|
|
15
|
+
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
|
16
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
17
|
+
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); } /**
|
|
18
|
+
* FlexPrice API
|
|
19
|
+
* FlexPrice API Service
|
|
20
|
+
*
|
|
21
|
+
* The version of the OpenAPI document: 1.0
|
|
22
|
+
*
|
|
23
|
+
*
|
|
24
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
25
|
+
* https://openapi-generator.tech
|
|
26
|
+
* Do not edit the class manually.
|
|
27
|
+
*
|
|
28
|
+
*/
|
|
29
|
+
/**
|
|
30
|
+
* The DtoWalletTransactionResponse model module.
|
|
31
|
+
* @module model/DtoWalletTransactionResponse
|
|
32
|
+
* @version 1.0
|
|
33
|
+
*/
|
|
34
|
+
var DtoWalletTransactionResponse = /*#__PURE__*/function () {
|
|
35
|
+
/**
|
|
36
|
+
* Constructs a new <code>DtoWalletTransactionResponse</code>.
|
|
37
|
+
* @alias module:model/DtoWalletTransactionResponse
|
|
38
|
+
*/
|
|
39
|
+
function DtoWalletTransactionResponse() {
|
|
40
|
+
_classCallCheck(this, DtoWalletTransactionResponse);
|
|
41
|
+
DtoWalletTransactionResponse.initialize(this);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* Initializes the fields of this object.
|
|
46
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
47
|
+
* Only for internal use.
|
|
48
|
+
*/
|
|
49
|
+
return _createClass(DtoWalletTransactionResponse, null, [{
|
|
50
|
+
key: "initialize",
|
|
51
|
+
value: function initialize(obj) {}
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* Constructs a <code>DtoWalletTransactionResponse</code> from a plain JavaScript object, optionally creating a new instance.
|
|
55
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
56
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
57
|
+
* @param {module:model/DtoWalletTransactionResponse} obj Optional instance to populate.
|
|
58
|
+
* @return {module:model/DtoWalletTransactionResponse} The populated <code>DtoWalletTransactionResponse</code> instance.
|
|
59
|
+
*/
|
|
60
|
+
}, {
|
|
61
|
+
key: "constructFromObject",
|
|
62
|
+
value: function constructFromObject(data, obj) {
|
|
63
|
+
if (data) {
|
|
64
|
+
obj = obj || new DtoWalletTransactionResponse();
|
|
65
|
+
if (data.hasOwnProperty('amount')) {
|
|
66
|
+
obj['amount'] = _ApiClient["default"].convertToType(data['amount'], 'Number');
|
|
67
|
+
}
|
|
68
|
+
if (data.hasOwnProperty('created_at')) {
|
|
69
|
+
obj['created_at'] = _ApiClient["default"].convertToType(data['created_at'], 'String');
|
|
70
|
+
}
|
|
71
|
+
if (data.hasOwnProperty('credit_amount')) {
|
|
72
|
+
obj['credit_amount'] = _ApiClient["default"].convertToType(data['credit_amount'], 'Number');
|
|
73
|
+
}
|
|
74
|
+
if (data.hasOwnProperty('credit_balance_after')) {
|
|
75
|
+
obj['credit_balance_after'] = _ApiClient["default"].convertToType(data['credit_balance_after'], 'Number');
|
|
76
|
+
}
|
|
77
|
+
if (data.hasOwnProperty('credit_balance_before')) {
|
|
78
|
+
obj['credit_balance_before'] = _ApiClient["default"].convertToType(data['credit_balance_before'], 'Number');
|
|
79
|
+
}
|
|
80
|
+
if (data.hasOwnProperty('credits_available')) {
|
|
81
|
+
obj['credits_available'] = _ApiClient["default"].convertToType(data['credits_available'], 'Number');
|
|
82
|
+
}
|
|
83
|
+
if (data.hasOwnProperty('description')) {
|
|
84
|
+
obj['description'] = _ApiClient["default"].convertToType(data['description'], 'String');
|
|
85
|
+
}
|
|
86
|
+
if (data.hasOwnProperty('expiry_date')) {
|
|
87
|
+
obj['expiry_date'] = _ApiClient["default"].convertToType(data['expiry_date'], 'String');
|
|
88
|
+
}
|
|
89
|
+
if (data.hasOwnProperty('id')) {
|
|
90
|
+
obj['id'] = _ApiClient["default"].convertToType(data['id'], 'String');
|
|
91
|
+
}
|
|
92
|
+
if (data.hasOwnProperty('metadata')) {
|
|
93
|
+
obj['metadata'] = _ApiClient["default"].convertToType(data['metadata'], {
|
|
94
|
+
'String': 'String'
|
|
95
|
+
});
|
|
96
|
+
}
|
|
97
|
+
if (data.hasOwnProperty('reference_id')) {
|
|
98
|
+
obj['reference_id'] = _ApiClient["default"].convertToType(data['reference_id'], 'String');
|
|
99
|
+
}
|
|
100
|
+
if (data.hasOwnProperty('reference_type')) {
|
|
101
|
+
obj['reference_type'] = _TypesWalletTxReferenceType["default"].constructFromObject(data['reference_type']);
|
|
102
|
+
}
|
|
103
|
+
if (data.hasOwnProperty('transaction_reason')) {
|
|
104
|
+
obj['transaction_reason'] = _TypesTransactionReason["default"].constructFromObject(data['transaction_reason']);
|
|
105
|
+
}
|
|
106
|
+
if (data.hasOwnProperty('transaction_status')) {
|
|
107
|
+
obj['transaction_status'] = _TypesTransactionStatus["default"].constructFromObject(data['transaction_status']);
|
|
108
|
+
}
|
|
109
|
+
if (data.hasOwnProperty('type')) {
|
|
110
|
+
obj['type'] = _ApiClient["default"].convertToType(data['type'], 'String');
|
|
111
|
+
}
|
|
112
|
+
if (data.hasOwnProperty('wallet_id')) {
|
|
113
|
+
obj['wallet_id'] = _ApiClient["default"].convertToType(data['wallet_id'], 'String');
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
return obj;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* Validates the JSON data with respect to <code>DtoWalletTransactionResponse</code>.
|
|
121
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
122
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>DtoWalletTransactionResponse</code>.
|
|
123
|
+
*/
|
|
124
|
+
}, {
|
|
125
|
+
key: "validateJSON",
|
|
126
|
+
value: function validateJSON(data) {
|
|
127
|
+
// ensure the json data is a string
|
|
128
|
+
if (data['created_at'] && !(typeof data['created_at'] === 'string' || data['created_at'] instanceof String)) {
|
|
129
|
+
throw new Error("Expected the field `created_at` to be a primitive type in the JSON string but got " + data['created_at']);
|
|
130
|
+
}
|
|
131
|
+
// ensure the json data is a string
|
|
132
|
+
if (data['description'] && !(typeof data['description'] === 'string' || data['description'] instanceof String)) {
|
|
133
|
+
throw new Error("Expected the field `description` to be a primitive type in the JSON string but got " + data['description']);
|
|
134
|
+
}
|
|
135
|
+
// ensure the json data is a string
|
|
136
|
+
if (data['expiry_date'] && !(typeof data['expiry_date'] === 'string' || data['expiry_date'] instanceof String)) {
|
|
137
|
+
throw new Error("Expected the field `expiry_date` to be a primitive type in the JSON string but got " + data['expiry_date']);
|
|
138
|
+
}
|
|
139
|
+
// ensure the json data is a string
|
|
140
|
+
if (data['id'] && !(typeof data['id'] === 'string' || data['id'] instanceof String)) {
|
|
141
|
+
throw new Error("Expected the field `id` to be a primitive type in the JSON string but got " + data['id']);
|
|
142
|
+
}
|
|
143
|
+
// ensure the json data is a string
|
|
144
|
+
if (data['reference_id'] && !(typeof data['reference_id'] === 'string' || data['reference_id'] instanceof String)) {
|
|
145
|
+
throw new Error("Expected the field `reference_id` to be a primitive type in the JSON string but got " + data['reference_id']);
|
|
146
|
+
}
|
|
147
|
+
// ensure the json data is a string
|
|
148
|
+
if (data['type'] && !(typeof data['type'] === 'string' || data['type'] instanceof String)) {
|
|
149
|
+
throw new Error("Expected the field `type` to be a primitive type in the JSON string but got " + data['type']);
|
|
150
|
+
}
|
|
151
|
+
// ensure the json data is a string
|
|
152
|
+
if (data['wallet_id'] && !(typeof data['wallet_id'] === 'string' || data['wallet_id'] instanceof String)) {
|
|
153
|
+
throw new Error("Expected the field `wallet_id` to be a primitive type in the JSON string but got " + data['wallet_id']);
|
|
154
|
+
}
|
|
155
|
+
return true;
|
|
156
|
+
}
|
|
157
|
+
}]);
|
|
158
|
+
}();
|
|
159
|
+
/**
|
|
160
|
+
* @member {Number} amount
|
|
161
|
+
*/
|
|
162
|
+
DtoWalletTransactionResponse.prototype['amount'] = undefined;
|
|
163
|
+
|
|
164
|
+
/**
|
|
165
|
+
* @member {String} created_at
|
|
166
|
+
*/
|
|
167
|
+
DtoWalletTransactionResponse.prototype['created_at'] = undefined;
|
|
168
|
+
|
|
169
|
+
/**
|
|
170
|
+
* @member {Number} credit_amount
|
|
171
|
+
*/
|
|
172
|
+
DtoWalletTransactionResponse.prototype['credit_amount'] = undefined;
|
|
173
|
+
|
|
174
|
+
/**
|
|
175
|
+
* @member {Number} credit_balance_after
|
|
176
|
+
*/
|
|
177
|
+
DtoWalletTransactionResponse.prototype['credit_balance_after'] = undefined;
|
|
178
|
+
|
|
179
|
+
/**
|
|
180
|
+
* @member {Number} credit_balance_before
|
|
181
|
+
*/
|
|
182
|
+
DtoWalletTransactionResponse.prototype['credit_balance_before'] = undefined;
|
|
183
|
+
|
|
184
|
+
/**
|
|
185
|
+
* @member {Number} credits_available
|
|
186
|
+
*/
|
|
187
|
+
DtoWalletTransactionResponse.prototype['credits_available'] = undefined;
|
|
188
|
+
|
|
189
|
+
/**
|
|
190
|
+
* @member {String} description
|
|
191
|
+
*/
|
|
192
|
+
DtoWalletTransactionResponse.prototype['description'] = undefined;
|
|
193
|
+
|
|
194
|
+
/**
|
|
195
|
+
* @member {String} expiry_date
|
|
196
|
+
*/
|
|
197
|
+
DtoWalletTransactionResponse.prototype['expiry_date'] = undefined;
|
|
198
|
+
|
|
199
|
+
/**
|
|
200
|
+
* @member {String} id
|
|
201
|
+
*/
|
|
202
|
+
DtoWalletTransactionResponse.prototype['id'] = undefined;
|
|
203
|
+
|
|
204
|
+
/**
|
|
205
|
+
* @member {Object.<String, String>} metadata
|
|
206
|
+
*/
|
|
207
|
+
DtoWalletTransactionResponse.prototype['metadata'] = undefined;
|
|
208
|
+
|
|
209
|
+
/**
|
|
210
|
+
* @member {String} reference_id
|
|
211
|
+
*/
|
|
212
|
+
DtoWalletTransactionResponse.prototype['reference_id'] = undefined;
|
|
213
|
+
|
|
214
|
+
/**
|
|
215
|
+
* @member {module:model/TypesWalletTxReferenceType} reference_type
|
|
216
|
+
*/
|
|
217
|
+
DtoWalletTransactionResponse.prototype['reference_type'] = undefined;
|
|
218
|
+
|
|
219
|
+
/**
|
|
220
|
+
* @member {module:model/TypesTransactionReason} transaction_reason
|
|
221
|
+
*/
|
|
222
|
+
DtoWalletTransactionResponse.prototype['transaction_reason'] = undefined;
|
|
223
|
+
|
|
224
|
+
/**
|
|
225
|
+
* @member {module:model/TypesTransactionStatus} transaction_status
|
|
226
|
+
*/
|
|
227
|
+
DtoWalletTransactionResponse.prototype['transaction_status'] = undefined;
|
|
228
|
+
|
|
229
|
+
/**
|
|
230
|
+
* @member {String} type
|
|
231
|
+
*/
|
|
232
|
+
DtoWalletTransactionResponse.prototype['type'] = undefined;
|
|
233
|
+
|
|
234
|
+
/**
|
|
235
|
+
* @member {String} wallet_id
|
|
236
|
+
*/
|
|
237
|
+
DtoWalletTransactionResponse.prototype['wallet_id'] = undefined;
|
|
238
|
+
var _default = exports["default"] = DtoWalletTransactionResponse;
|
|
@@ -0,0 +1,111 @@
|
|
|
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 ErrorsErrorDetail model module.
|
|
28
|
+
* @module model/ErrorsErrorDetail
|
|
29
|
+
* @version 1.0
|
|
30
|
+
*/
|
|
31
|
+
var ErrorsErrorDetail = /*#__PURE__*/function () {
|
|
32
|
+
/**
|
|
33
|
+
* Constructs a new <code>ErrorsErrorDetail</code>.
|
|
34
|
+
* @alias module:model/ErrorsErrorDetail
|
|
35
|
+
*/
|
|
36
|
+
function ErrorsErrorDetail() {
|
|
37
|
+
_classCallCheck(this, ErrorsErrorDetail);
|
|
38
|
+
ErrorsErrorDetail.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(ErrorsErrorDetail, null, [{
|
|
47
|
+
key: "initialize",
|
|
48
|
+
value: function initialize(obj) {}
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* Constructs a <code>ErrorsErrorDetail</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/ErrorsErrorDetail} obj Optional instance to populate.
|
|
55
|
+
* @return {module:model/ErrorsErrorDetail} The populated <code>ErrorsErrorDetail</code> instance.
|
|
56
|
+
*/
|
|
57
|
+
}, {
|
|
58
|
+
key: "constructFromObject",
|
|
59
|
+
value: function constructFromObject(data, obj) {
|
|
60
|
+
if (data) {
|
|
61
|
+
obj = obj || new ErrorsErrorDetail();
|
|
62
|
+
if (data.hasOwnProperty('details')) {
|
|
63
|
+
obj['details'] = _ApiClient["default"].convertToType(data['details'], {
|
|
64
|
+
'String': Object
|
|
65
|
+
});
|
|
66
|
+
}
|
|
67
|
+
if (data.hasOwnProperty('internal_error')) {
|
|
68
|
+
obj['internal_error'] = _ApiClient["default"].convertToType(data['internal_error'], 'String');
|
|
69
|
+
}
|
|
70
|
+
if (data.hasOwnProperty('message')) {
|
|
71
|
+
obj['message'] = _ApiClient["default"].convertToType(data['message'], 'String');
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
return obj;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* Validates the JSON data with respect to <code>ErrorsErrorDetail</code>.
|
|
79
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
80
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>ErrorsErrorDetail</code>.
|
|
81
|
+
*/
|
|
82
|
+
}, {
|
|
83
|
+
key: "validateJSON",
|
|
84
|
+
value: function validateJSON(data) {
|
|
85
|
+
// ensure the json data is a string
|
|
86
|
+
if (data['internal_error'] && !(typeof data['internal_error'] === 'string' || data['internal_error'] instanceof String)) {
|
|
87
|
+
throw new Error("Expected the field `internal_error` to be a primitive type in the JSON string but got " + data['internal_error']);
|
|
88
|
+
}
|
|
89
|
+
// ensure the json data is a string
|
|
90
|
+
if (data['message'] && !(typeof data['message'] === 'string' || data['message'] instanceof String)) {
|
|
91
|
+
throw new Error("Expected the field `message` to be a primitive type in the JSON string but got " + data['message']);
|
|
92
|
+
}
|
|
93
|
+
return true;
|
|
94
|
+
}
|
|
95
|
+
}]);
|
|
96
|
+
}();
|
|
97
|
+
/**
|
|
98
|
+
* @member {Object.<String, Object>} details
|
|
99
|
+
*/
|
|
100
|
+
ErrorsErrorDetail.prototype['details'] = undefined;
|
|
101
|
+
|
|
102
|
+
/**
|
|
103
|
+
* @member {String} internal_error
|
|
104
|
+
*/
|
|
105
|
+
ErrorsErrorDetail.prototype['internal_error'] = undefined;
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* @member {String} message
|
|
109
|
+
*/
|
|
110
|
+
ErrorsErrorDetail.prototype['message'] = undefined;
|
|
111
|
+
var _default = exports["default"] = ErrorsErrorDetail;
|