green_link_api 1.0.0 → 1.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 +72 -33
- package/dist/ApiClient.js +70 -24
- package/dist/api/BlockchainApi.js +283 -0
- package/dist/api/EnergyAssetsApi.js +196 -44
- package/dist/api/EnergyDataApi.js +354 -46
- package/dist/api/HealthCheckApi.js +68 -0
- package/dist/api/LicensedProductionSitesOnEpiasApi.js +69 -0
- package/dist/api/LocationsApi.js +10 -10
- package/dist/api/LogsApi.js +428 -0
- package/dist/api/MaintenanceCheckApi.js +68 -0
- package/dist/api/OrganizationprofilesApi.js +8 -8
- package/dist/api/OrganizationsApi.js +47 -47
- package/dist/api/SchemaApi.js +6 -6
- package/dist/api/SentryDebugApi.js +68 -0
- package/dist/api/UsersApi.js +74 -256
- package/dist/index.js +267 -67
- package/dist/model/BlockchainTransaction.js +172 -0
- package/dist/model/Consumer.js +7 -7
- package/dist/model/ConsumptionDataFileList.js +132 -0
- package/dist/model/ConsumptionDataFromRetailerRequest.js +110 -0
- package/dist/model/{RestAuthDetail.js → ConsumptionDataFromRetailerResponse.js} +26 -21
- package/dist/model/ConsumptionDataPointCreate.js +12 -12
- package/dist/model/ConsumptionDataPointListOrDetail.js +21 -14
- package/dist/model/ConsumptionDataPointUpdate.js +12 -12
- package/dist/model/ConsumptionSite.js +20 -21
- package/dist/model/ConsumptionSiteCreate.js +195 -0
- package/dist/model/ConsumptionSiteFileUpload.js +133 -0
- package/dist/model/{TokenRefresh.js → ConsumptionSiteFromRetailer.js} +25 -33
- package/dist/model/ConsumptionSiteListOrDetail.js +15 -33
- package/dist/model/ConsumptionSiteMany.js +195 -0
- package/dist/model/ContentTypeEnum.js +54 -0
- package/dist/model/EmissionFactor.js +6 -8
- package/dist/model/EnergySourceEnum.js +1 -1
- package/dist/model/EnergySourcePreference.js +2 -2
- package/dist/model/GetFromEpias.js +98 -0
- package/dist/model/GridOperator.js +6 -6
- package/dist/model/Issuer.js +6 -6
- package/dist/model/Location.js +6 -8
- package/dist/model/Login.js +2 -2
- package/dist/model/MatchRequest.js +299 -0
- package/dist/model/{CountryEnum.js → MatchTypeEnum.js} +12 -12
- package/dist/model/MatchedEnergyDataPoint.js +13 -14
- package/dist/model/MatchingConsumerRequest.js +122 -0
- package/dist/model/{MatchingRequest.js → MatchingSiteRequest.js} +32 -21
- package/dist/model/OrganizationTypeEnum.js +1 -1
- package/dist/model/PaginatedConsumerList.js +2 -2
- package/dist/model/PaginatedConsumptionDataPointListOrDetailList.js +2 -2
- package/dist/model/PaginatedConsumptionSiteListOrDetailList.js +2 -2
- package/dist/model/PaginatedEmissionFactorList.js +2 -2
- package/dist/model/PaginatedEnergySourcePreferenceList.js +2 -2
- package/dist/model/PaginatedGridOperatorList.js +2 -2
- package/dist/model/PaginatedIssuerList.js +2 -2
- package/dist/model/PaginatedLocationList.js +2 -2
- package/dist/model/PaginatedMatchRequestList.js +104 -0
- package/dist/model/PaginatedMatchedEnergyDataPointList.js +2 -2
- package/dist/model/PaginatedProducerList.js +2 -2
- package/dist/model/PaginatedProductionDataFromEpiasRequestList.js +104 -0
- package/dist/model/PaginatedProductionDataPointListOrDetailList.js +2 -2
- package/dist/model/PaginatedProductionSiteListOrDetailList.js +2 -2
- package/dist/model/PaginatedRetailerList.js +2 -2
- package/dist/model/PaginatedSmartContractList.js +104 -0
- package/dist/model/PaginatedUnprocessedRowList.js +104 -0
- package/dist/model/PaginatedUploadedFileList.js +104 -0
- package/dist/model/PaginatedUserList.js +2 -2
- package/dist/model/PatchedConsumer.js +7 -7
- package/dist/model/PatchedConsumptionDataPointUpdate.js +12 -12
- package/dist/model/PatchedConsumptionSite.js +15 -16
- package/dist/model/PatchedEmissionFactor.js +5 -7
- package/dist/model/PatchedEnergySourcePreference.js +2 -2
- package/dist/model/PatchedGridOperator.js +6 -6
- package/dist/model/PatchedIssuer.js +6 -6
- package/dist/model/PatchedLocation.js +5 -7
- package/dist/model/PatchedProducer.js +6 -6
- package/dist/model/PatchedProductionDataPointUpdate.js +13 -13
- package/dist/model/{PatchedProductionSite.js → PatchedProductionSiteUpdate.js} +60 -45
- package/dist/model/PatchedRetailer.js +16 -6
- package/dist/model/PatchedSmartContract.js +134 -0
- package/dist/model/PatchedUser.js +13 -2
- package/dist/model/PatchedUserDetail.js +13 -2
- package/dist/model/PriorityEnum.js +7 -1
- package/dist/model/Producer.js +6 -6
- package/dist/model/ProductionDataFileList.js +132 -0
- package/dist/model/ProductionDataFromEpiasRequest.js +167 -0
- package/dist/model/ProductionDataPointCreate.js +13 -13
- package/dist/model/ProductionDataPointListOrDetail.js +24 -21
- package/dist/model/ProductionDataPointUpdate.js +13 -13
- package/dist/model/ProductionSite.js +37 -24
- package/dist/model/ProductionSiteFileUpload.js +177 -0
- package/dist/model/ProductionSiteListOrDetail.js +30 -43
- package/dist/model/ProductionSiteUpdate.js +245 -0
- package/dist/model/Register.js +18 -6
- package/dist/model/Retailer.js +16 -6
- package/dist/model/SmartContract.js +139 -0
- package/dist/model/StatusEnum.js +52 -0
- package/dist/model/{VerifyEmail.js → Token.js} +19 -18
- package/dist/model/TypeEnum.js +52 -0
- package/dist/model/UnprocessedRow.js +140 -0
- package/dist/model/UploadedFile.js +154 -0
- package/dist/model/User.js +13 -2
- package/dist/model/UserDetail.js +13 -2
- package/package.json +4 -4
- package/dist/model/JWT.js +0 -103
- package/dist/model/PasswordChange.js +0 -100
- package/dist/model/PasswordReset.js +0 -79
- package/dist/model/PasswordResetConfirm.js +0 -112
- package/dist/model/TechnologyOrFuelTypeEnum.js +0 -170
- package/dist/model/TokenVerify.js +0 -78
|
@@ -15,12 +15,12 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
|
|
|
15
15
|
|
|
16
16
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
17
17
|
|
|
18
|
-
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
18
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
19
19
|
|
|
20
20
|
/**
|
|
21
21
|
* The PaginatedProductionSiteListOrDetailList model module.
|
|
22
22
|
* @module model/PaginatedProductionSiteListOrDetailList
|
|
23
|
-
* @version 1.0.
|
|
23
|
+
* @version 1.0.1
|
|
24
24
|
*/
|
|
25
25
|
var PaginatedProductionSiteListOrDetailList = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -15,12 +15,12 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
|
|
|
15
15
|
|
|
16
16
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
17
17
|
|
|
18
|
-
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
18
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
19
19
|
|
|
20
20
|
/**
|
|
21
21
|
* The PaginatedRetailerList model module.
|
|
22
22
|
* @module model/PaginatedRetailerList
|
|
23
|
-
* @version 1.0.
|
|
23
|
+
* @version 1.0.1
|
|
24
24
|
*/
|
|
25
25
|
var PaginatedRetailerList = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
|
|
8
|
+
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
9
|
+
|
|
10
|
+
var _SmartContract = _interopRequireDefault(require("./SmartContract"));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
13
|
+
|
|
14
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
15
|
+
|
|
16
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
17
|
+
|
|
18
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* The PaginatedSmartContractList model module.
|
|
22
|
+
* @module model/PaginatedSmartContractList
|
|
23
|
+
* @version 1.0.1
|
|
24
|
+
*/
|
|
25
|
+
var PaginatedSmartContractList = /*#__PURE__*/function () {
|
|
26
|
+
/**
|
|
27
|
+
* Constructs a new <code>PaginatedSmartContractList</code>.
|
|
28
|
+
* @alias module:model/PaginatedSmartContractList
|
|
29
|
+
*/
|
|
30
|
+
function PaginatedSmartContractList() {
|
|
31
|
+
_classCallCheck(this, PaginatedSmartContractList);
|
|
32
|
+
|
|
33
|
+
PaginatedSmartContractList.initialize(this);
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Initializes the fields of this object.
|
|
37
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
38
|
+
* Only for internal use.
|
|
39
|
+
*/
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
_createClass(PaginatedSmartContractList, null, [{
|
|
43
|
+
key: "initialize",
|
|
44
|
+
value: function initialize(obj) {}
|
|
45
|
+
/**
|
|
46
|
+
* Constructs a <code>PaginatedSmartContractList</code> from a plain JavaScript object, optionally creating a new instance.
|
|
47
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
48
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
49
|
+
* @param {module:model/PaginatedSmartContractList} obj Optional instance to populate.
|
|
50
|
+
* @return {module:model/PaginatedSmartContractList} The populated <code>PaginatedSmartContractList</code> instance.
|
|
51
|
+
*/
|
|
52
|
+
|
|
53
|
+
}, {
|
|
54
|
+
key: "constructFromObject",
|
|
55
|
+
value: function constructFromObject(data, obj) {
|
|
56
|
+
if (data) {
|
|
57
|
+
obj = obj || new PaginatedSmartContractList();
|
|
58
|
+
|
|
59
|
+
if (data.hasOwnProperty('count')) {
|
|
60
|
+
obj['count'] = _ApiClient["default"].convertToType(data['count'], 'Number');
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
if (data.hasOwnProperty('next')) {
|
|
64
|
+
obj['next'] = _ApiClient["default"].convertToType(data['next'], 'String');
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
if (data.hasOwnProperty('previous')) {
|
|
68
|
+
obj['previous'] = _ApiClient["default"].convertToType(data['previous'], 'String');
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
if (data.hasOwnProperty('results')) {
|
|
72
|
+
obj['results'] = _ApiClient["default"].convertToType(data['results'], [_SmartContract["default"]]);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
return obj;
|
|
77
|
+
}
|
|
78
|
+
}]);
|
|
79
|
+
|
|
80
|
+
return PaginatedSmartContractList;
|
|
81
|
+
}();
|
|
82
|
+
/**
|
|
83
|
+
* @member {Number} count
|
|
84
|
+
*/
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
PaginatedSmartContractList.prototype['count'] = undefined;
|
|
88
|
+
/**
|
|
89
|
+
* @member {String} next
|
|
90
|
+
*/
|
|
91
|
+
|
|
92
|
+
PaginatedSmartContractList.prototype['next'] = undefined;
|
|
93
|
+
/**
|
|
94
|
+
* @member {String} previous
|
|
95
|
+
*/
|
|
96
|
+
|
|
97
|
+
PaginatedSmartContractList.prototype['previous'] = undefined;
|
|
98
|
+
/**
|
|
99
|
+
* @member {Array.<module:model/SmartContract>} results
|
|
100
|
+
*/
|
|
101
|
+
|
|
102
|
+
PaginatedSmartContractList.prototype['results'] = undefined;
|
|
103
|
+
var _default = PaginatedSmartContractList;
|
|
104
|
+
exports["default"] = _default;
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
|
|
8
|
+
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
9
|
+
|
|
10
|
+
var _UnprocessedRow = _interopRequireDefault(require("./UnprocessedRow"));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
13
|
+
|
|
14
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
15
|
+
|
|
16
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
17
|
+
|
|
18
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* The PaginatedUnprocessedRowList model module.
|
|
22
|
+
* @module model/PaginatedUnprocessedRowList
|
|
23
|
+
* @version 1.0.1
|
|
24
|
+
*/
|
|
25
|
+
var PaginatedUnprocessedRowList = /*#__PURE__*/function () {
|
|
26
|
+
/**
|
|
27
|
+
* Constructs a new <code>PaginatedUnprocessedRowList</code>.
|
|
28
|
+
* @alias module:model/PaginatedUnprocessedRowList
|
|
29
|
+
*/
|
|
30
|
+
function PaginatedUnprocessedRowList() {
|
|
31
|
+
_classCallCheck(this, PaginatedUnprocessedRowList);
|
|
32
|
+
|
|
33
|
+
PaginatedUnprocessedRowList.initialize(this);
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Initializes the fields of this object.
|
|
37
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
38
|
+
* Only for internal use.
|
|
39
|
+
*/
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
_createClass(PaginatedUnprocessedRowList, null, [{
|
|
43
|
+
key: "initialize",
|
|
44
|
+
value: function initialize(obj) {}
|
|
45
|
+
/**
|
|
46
|
+
* Constructs a <code>PaginatedUnprocessedRowList</code> from a plain JavaScript object, optionally creating a new instance.
|
|
47
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
48
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
49
|
+
* @param {module:model/PaginatedUnprocessedRowList} obj Optional instance to populate.
|
|
50
|
+
* @return {module:model/PaginatedUnprocessedRowList} The populated <code>PaginatedUnprocessedRowList</code> instance.
|
|
51
|
+
*/
|
|
52
|
+
|
|
53
|
+
}, {
|
|
54
|
+
key: "constructFromObject",
|
|
55
|
+
value: function constructFromObject(data, obj) {
|
|
56
|
+
if (data) {
|
|
57
|
+
obj = obj || new PaginatedUnprocessedRowList();
|
|
58
|
+
|
|
59
|
+
if (data.hasOwnProperty('count')) {
|
|
60
|
+
obj['count'] = _ApiClient["default"].convertToType(data['count'], 'Number');
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
if (data.hasOwnProperty('next')) {
|
|
64
|
+
obj['next'] = _ApiClient["default"].convertToType(data['next'], 'String');
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
if (data.hasOwnProperty('previous')) {
|
|
68
|
+
obj['previous'] = _ApiClient["default"].convertToType(data['previous'], 'String');
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
if (data.hasOwnProperty('results')) {
|
|
72
|
+
obj['results'] = _ApiClient["default"].convertToType(data['results'], [_UnprocessedRow["default"]]);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
return obj;
|
|
77
|
+
}
|
|
78
|
+
}]);
|
|
79
|
+
|
|
80
|
+
return PaginatedUnprocessedRowList;
|
|
81
|
+
}();
|
|
82
|
+
/**
|
|
83
|
+
* @member {Number} count
|
|
84
|
+
*/
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
PaginatedUnprocessedRowList.prototype['count'] = undefined;
|
|
88
|
+
/**
|
|
89
|
+
* @member {String} next
|
|
90
|
+
*/
|
|
91
|
+
|
|
92
|
+
PaginatedUnprocessedRowList.prototype['next'] = undefined;
|
|
93
|
+
/**
|
|
94
|
+
* @member {String} previous
|
|
95
|
+
*/
|
|
96
|
+
|
|
97
|
+
PaginatedUnprocessedRowList.prototype['previous'] = undefined;
|
|
98
|
+
/**
|
|
99
|
+
* @member {Array.<module:model/UnprocessedRow>} results
|
|
100
|
+
*/
|
|
101
|
+
|
|
102
|
+
PaginatedUnprocessedRowList.prototype['results'] = undefined;
|
|
103
|
+
var _default = PaginatedUnprocessedRowList;
|
|
104
|
+
exports["default"] = _default;
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
|
|
8
|
+
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
9
|
+
|
|
10
|
+
var _UploadedFile = _interopRequireDefault(require("./UploadedFile"));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
13
|
+
|
|
14
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
15
|
+
|
|
16
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
17
|
+
|
|
18
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* The PaginatedUploadedFileList model module.
|
|
22
|
+
* @module model/PaginatedUploadedFileList
|
|
23
|
+
* @version 1.0.1
|
|
24
|
+
*/
|
|
25
|
+
var PaginatedUploadedFileList = /*#__PURE__*/function () {
|
|
26
|
+
/**
|
|
27
|
+
* Constructs a new <code>PaginatedUploadedFileList</code>.
|
|
28
|
+
* @alias module:model/PaginatedUploadedFileList
|
|
29
|
+
*/
|
|
30
|
+
function PaginatedUploadedFileList() {
|
|
31
|
+
_classCallCheck(this, PaginatedUploadedFileList);
|
|
32
|
+
|
|
33
|
+
PaginatedUploadedFileList.initialize(this);
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Initializes the fields of this object.
|
|
37
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
38
|
+
* Only for internal use.
|
|
39
|
+
*/
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
_createClass(PaginatedUploadedFileList, null, [{
|
|
43
|
+
key: "initialize",
|
|
44
|
+
value: function initialize(obj) {}
|
|
45
|
+
/**
|
|
46
|
+
* Constructs a <code>PaginatedUploadedFileList</code> from a plain JavaScript object, optionally creating a new instance.
|
|
47
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
48
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
49
|
+
* @param {module:model/PaginatedUploadedFileList} obj Optional instance to populate.
|
|
50
|
+
* @return {module:model/PaginatedUploadedFileList} The populated <code>PaginatedUploadedFileList</code> instance.
|
|
51
|
+
*/
|
|
52
|
+
|
|
53
|
+
}, {
|
|
54
|
+
key: "constructFromObject",
|
|
55
|
+
value: function constructFromObject(data, obj) {
|
|
56
|
+
if (data) {
|
|
57
|
+
obj = obj || new PaginatedUploadedFileList();
|
|
58
|
+
|
|
59
|
+
if (data.hasOwnProperty('count')) {
|
|
60
|
+
obj['count'] = _ApiClient["default"].convertToType(data['count'], 'Number');
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
if (data.hasOwnProperty('next')) {
|
|
64
|
+
obj['next'] = _ApiClient["default"].convertToType(data['next'], 'String');
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
if (data.hasOwnProperty('previous')) {
|
|
68
|
+
obj['previous'] = _ApiClient["default"].convertToType(data['previous'], 'String');
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
if (data.hasOwnProperty('results')) {
|
|
72
|
+
obj['results'] = _ApiClient["default"].convertToType(data['results'], [_UploadedFile["default"]]);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
return obj;
|
|
77
|
+
}
|
|
78
|
+
}]);
|
|
79
|
+
|
|
80
|
+
return PaginatedUploadedFileList;
|
|
81
|
+
}();
|
|
82
|
+
/**
|
|
83
|
+
* @member {Number} count
|
|
84
|
+
*/
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
PaginatedUploadedFileList.prototype['count'] = undefined;
|
|
88
|
+
/**
|
|
89
|
+
* @member {String} next
|
|
90
|
+
*/
|
|
91
|
+
|
|
92
|
+
PaginatedUploadedFileList.prototype['next'] = undefined;
|
|
93
|
+
/**
|
|
94
|
+
* @member {String} previous
|
|
95
|
+
*/
|
|
96
|
+
|
|
97
|
+
PaginatedUploadedFileList.prototype['previous'] = undefined;
|
|
98
|
+
/**
|
|
99
|
+
* @member {Array.<module:model/UploadedFile>} results
|
|
100
|
+
*/
|
|
101
|
+
|
|
102
|
+
PaginatedUploadedFileList.prototype['results'] = undefined;
|
|
103
|
+
var _default = PaginatedUploadedFileList;
|
|
104
|
+
exports["default"] = _default;
|
|
@@ -15,12 +15,12 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
|
|
|
15
15
|
|
|
16
16
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
17
17
|
|
|
18
|
-
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
18
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
19
19
|
|
|
20
20
|
/**
|
|
21
21
|
* The PaginatedUserList model module.
|
|
22
22
|
* @module model/PaginatedUserList
|
|
23
|
-
* @version 1.0.
|
|
23
|
+
* @version 1.0.1
|
|
24
24
|
*/
|
|
25
25
|
var PaginatedUserList = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -15,12 +15,12 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
|
|
|
15
15
|
|
|
16
16
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
17
17
|
|
|
18
|
-
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
18
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
19
19
|
|
|
20
20
|
/**
|
|
21
21
|
* The PatchedConsumer model module.
|
|
22
22
|
* @module model/PatchedConsumer
|
|
23
|
-
* @version 1.0.
|
|
23
|
+
* @version 1.0.1
|
|
24
24
|
*/
|
|
25
25
|
var PatchedConsumer = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -72,8 +72,8 @@ var PatchedConsumer = /*#__PURE__*/function () {
|
|
|
72
72
|
obj['blockchain_account_address'] = _ApiClient["default"].convertToType(data['blockchain_account_address'], 'String');
|
|
73
73
|
}
|
|
74
74
|
|
|
75
|
-
if (data.hasOwnProperty('
|
|
76
|
-
obj['
|
|
75
|
+
if (data.hasOwnProperty('website_url')) {
|
|
76
|
+
obj['website_url'] = _ApiClient["default"].convertToType(data['website_url'], 'String');
|
|
77
77
|
}
|
|
78
78
|
|
|
79
79
|
if (data.hasOwnProperty('is_active')) {
|
|
@@ -127,10 +127,10 @@ PatchedConsumer.prototype['location'] = undefined;
|
|
|
127
127
|
PatchedConsumer.prototype['blockchain_account_address'] = undefined;
|
|
128
128
|
/**
|
|
129
129
|
* Not required. 200 characters or fewer.
|
|
130
|
-
* @member {String}
|
|
130
|
+
* @member {String} website_url
|
|
131
131
|
*/
|
|
132
132
|
|
|
133
|
-
PatchedConsumer.prototype['
|
|
133
|
+
PatchedConsumer.prototype['website_url'] = undefined;
|
|
134
134
|
/**
|
|
135
135
|
* True if organization is active. Default True.
|
|
136
136
|
* @member {Boolean} is_active
|
|
@@ -143,7 +143,7 @@ PatchedConsumer.prototype['is_active'] = undefined;
|
|
|
143
143
|
|
|
144
144
|
PatchedConsumer.prototype['retailer'] = undefined;
|
|
145
145
|
/**
|
|
146
|
-
* Distance in
|
|
146
|
+
* Distance in kilometers. If not assigned then max distance is not used to restrict matching.
|
|
147
147
|
* @member {Number} energy_source_max_distance
|
|
148
148
|
*/
|
|
149
149
|
|
|
@@ -7,18 +7,20 @@ exports["default"] = void 0;
|
|
|
7
7
|
|
|
8
8
|
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
9
9
|
|
|
10
|
+
var _SmartContract = _interopRequireDefault(require("./SmartContract"));
|
|
11
|
+
|
|
10
12
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
11
13
|
|
|
12
14
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
13
15
|
|
|
14
16
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
15
17
|
|
|
16
|
-
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
18
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
17
19
|
|
|
18
20
|
/**
|
|
19
21
|
* The PatchedConsumptionDataPointUpdate model module.
|
|
20
22
|
* @module model/PatchedConsumptionDataPointUpdate
|
|
21
|
-
* @version 1.0.
|
|
23
|
+
* @version 1.0.1
|
|
22
24
|
*/
|
|
23
25
|
var PatchedConsumptionDataPointUpdate = /*#__PURE__*/function () {
|
|
24
26
|
/**
|
|
@@ -122,16 +124,16 @@ var PatchedConsumptionDataPointUpdate = /*#__PURE__*/function () {
|
|
|
122
124
|
obj['amount_consumed'] = _ApiClient["default"].convertToType(data['amount_consumed'], 'Number');
|
|
123
125
|
}
|
|
124
126
|
|
|
125
|
-
if (data.hasOwnProperty('
|
|
126
|
-
obj['
|
|
127
|
+
if (data.hasOwnProperty('tx')) {
|
|
128
|
+
obj['tx'] = _ApiClient["default"].convertToType(data['tx'], 'String');
|
|
127
129
|
}
|
|
128
130
|
|
|
129
131
|
if (data.hasOwnProperty('is_settlement_data')) {
|
|
130
132
|
obj['is_settlement_data'] = _ApiClient["default"].convertToType(data['is_settlement_data'], 'Boolean');
|
|
131
133
|
}
|
|
132
134
|
|
|
133
|
-
if (data.hasOwnProperty('
|
|
134
|
-
obj['
|
|
135
|
+
if (data.hasOwnProperty('minter_contract')) {
|
|
136
|
+
obj['minter_contract'] = _ApiClient["default"].convertToType(data['minter_contract'], _SmartContract["default"]);
|
|
135
137
|
}
|
|
136
138
|
|
|
137
139
|
if (data.hasOwnProperty('created_at')) {
|
|
@@ -247,11 +249,10 @@ PatchedConsumptionDataPointUpdate.prototype['consumption_end'] = undefined;
|
|
|
247
249
|
|
|
248
250
|
PatchedConsumptionDataPointUpdate.prototype['amount_consumed'] = undefined;
|
|
249
251
|
/**
|
|
250
|
-
*
|
|
251
|
-
* @member {String} consumption_tx_hash
|
|
252
|
+
* @member {String} tx
|
|
252
253
|
*/
|
|
253
254
|
|
|
254
|
-
PatchedConsumptionDataPointUpdate.prototype['
|
|
255
|
+
PatchedConsumptionDataPointUpdate.prototype['tx'] = undefined;
|
|
255
256
|
/**
|
|
256
257
|
* True if settlement data. Default False.
|
|
257
258
|
* @member {Boolean} is_settlement_data
|
|
@@ -259,11 +260,10 @@ PatchedConsumptionDataPointUpdate.prototype['consumption_tx_hash'] = undefined;
|
|
|
259
260
|
|
|
260
261
|
PatchedConsumptionDataPointUpdate.prototype['is_settlement_data'] = undefined;
|
|
261
262
|
/**
|
|
262
|
-
*
|
|
263
|
-
* @member {String} token_contract_address
|
|
263
|
+
* @member {module:model/SmartContract} minter_contract
|
|
264
264
|
*/
|
|
265
265
|
|
|
266
|
-
PatchedConsumptionDataPointUpdate.prototype['
|
|
266
|
+
PatchedConsumptionDataPointUpdate.prototype['minter_contract'] = undefined;
|
|
267
267
|
/**
|
|
268
268
|
* @member {Date} created_at
|
|
269
269
|
*/
|
|
@@ -15,12 +15,12 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
|
|
|
15
15
|
|
|
16
16
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
17
17
|
|
|
18
|
-
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
18
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
19
19
|
|
|
20
20
|
/**
|
|
21
21
|
* The PatchedConsumptionSite model module.
|
|
22
22
|
* @module model/PatchedConsumptionSite
|
|
23
|
-
* @version 1.0.
|
|
23
|
+
* @version 1.0.1
|
|
24
24
|
*/
|
|
25
25
|
var PatchedConsumptionSite = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -84,16 +84,16 @@ var PatchedConsumptionSite = /*#__PURE__*/function () {
|
|
|
84
84
|
obj['name'] = _ApiClient["default"].convertToType(data['name'], 'String');
|
|
85
85
|
}
|
|
86
86
|
|
|
87
|
-
if (data.hasOwnProperty('
|
|
88
|
-
obj['
|
|
87
|
+
if (data.hasOwnProperty('site_logo')) {
|
|
88
|
+
obj['site_logo'] = _ApiClient["default"].convertToType(data['site_logo'], 'String');
|
|
89
89
|
}
|
|
90
90
|
|
|
91
|
-
if (data.hasOwnProperty('
|
|
92
|
-
obj['
|
|
91
|
+
if (data.hasOwnProperty('eic')) {
|
|
92
|
+
obj['eic'] = _ApiClient["default"].convertToType(data['eic'], 'String');
|
|
93
93
|
}
|
|
94
94
|
|
|
95
|
-
if (data.hasOwnProperty('
|
|
96
|
-
obj['
|
|
95
|
+
if (data.hasOwnProperty('blockchain_account_address')) {
|
|
96
|
+
obj['blockchain_account_address'] = _ApiClient["default"].convertToType(data['blockchain_account_address'], 'String');
|
|
97
97
|
}
|
|
98
98
|
|
|
99
99
|
if (data.hasOwnProperty('is_active')) {
|
|
@@ -153,22 +153,21 @@ PatchedConsumptionSite.prototype['location'] = undefined;
|
|
|
153
153
|
|
|
154
154
|
PatchedConsumptionSite.prototype['name'] = undefined;
|
|
155
155
|
/**
|
|
156
|
-
*
|
|
157
|
-
* @member {String} meter_code
|
|
156
|
+
* @member {String} site_logo
|
|
158
157
|
*/
|
|
159
158
|
|
|
160
|
-
PatchedConsumptionSite.prototype['
|
|
159
|
+
PatchedConsumptionSite.prototype['site_logo'] = undefined;
|
|
161
160
|
/**
|
|
162
|
-
*
|
|
161
|
+
* Required. 30 characters or fewer.
|
|
162
|
+
* @member {String} eic
|
|
163
163
|
*/
|
|
164
164
|
|
|
165
|
-
PatchedConsumptionSite.prototype['
|
|
165
|
+
PatchedConsumptionSite.prototype['eic'] = undefined;
|
|
166
166
|
/**
|
|
167
|
-
*
|
|
168
|
-
* @member {Number} nonce
|
|
167
|
+
* @member {String} blockchain_account_address
|
|
169
168
|
*/
|
|
170
169
|
|
|
171
|
-
PatchedConsumptionSite.prototype['
|
|
170
|
+
PatchedConsumptionSite.prototype['blockchain_account_address'] = undefined;
|
|
172
171
|
/**
|
|
173
172
|
* True if organization is active. Default True.
|
|
174
173
|
* @member {Boolean} is_active
|
|
@@ -7,20 +7,18 @@ exports["default"] = void 0;
|
|
|
7
7
|
|
|
8
8
|
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
9
9
|
|
|
10
|
-
var _CountryEnum = _interopRequireDefault(require("./CountryEnum"));
|
|
11
|
-
|
|
12
10
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
13
11
|
|
|
14
12
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
15
13
|
|
|
16
14
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
17
15
|
|
|
18
|
-
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
16
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
19
17
|
|
|
20
18
|
/**
|
|
21
19
|
* The PatchedEmissionFactor model module.
|
|
22
20
|
* @module model/PatchedEmissionFactor
|
|
23
|
-
* @version 1.0.
|
|
21
|
+
* @version 1.0.1
|
|
24
22
|
*/
|
|
25
23
|
var PatchedEmissionFactor = /*#__PURE__*/function () {
|
|
26
24
|
/**
|
|
@@ -69,7 +67,7 @@ var PatchedEmissionFactor = /*#__PURE__*/function () {
|
|
|
69
67
|
}
|
|
70
68
|
|
|
71
69
|
if (data.hasOwnProperty('country')) {
|
|
72
|
-
obj['country'] = _ApiClient["default"].convertToType(data['country'],
|
|
70
|
+
obj['country'] = _ApiClient["default"].convertToType(data['country'], 'String');
|
|
73
71
|
}
|
|
74
72
|
|
|
75
73
|
if (data.hasOwnProperty('electricity_emission_factor')) {
|
|
@@ -108,8 +106,8 @@ PatchedEmissionFactor.prototype['period_start'] = undefined;
|
|
|
108
106
|
|
|
109
107
|
PatchedEmissionFactor.prototype['period_end'] = undefined;
|
|
110
108
|
/**
|
|
111
|
-
* Required.
|
|
112
|
-
* @member {
|
|
109
|
+
* Required. 150 characters or fewer.
|
|
110
|
+
* @member {String} country
|
|
113
111
|
*/
|
|
114
112
|
|
|
115
113
|
PatchedEmissionFactor.prototype['country'] = undefined;
|
|
@@ -17,12 +17,12 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
|
|
|
17
17
|
|
|
18
18
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
19
19
|
|
|
20
|
-
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
20
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
21
21
|
|
|
22
22
|
/**
|
|
23
23
|
* The PatchedEnergySourcePreference model module.
|
|
24
24
|
* @module model/PatchedEnergySourcePreference
|
|
25
|
-
* @version 1.0.
|
|
25
|
+
* @version 1.0.1
|
|
26
26
|
*/
|
|
27
27
|
var PatchedEnergySourcePreference = /*#__PURE__*/function () {
|
|
28
28
|
/**
|
|
@@ -15,12 +15,12 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
|
|
|
15
15
|
|
|
16
16
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
17
17
|
|
|
18
|
-
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
18
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
19
19
|
|
|
20
20
|
/**
|
|
21
21
|
* The PatchedGridOperator model module.
|
|
22
22
|
* @module model/PatchedGridOperator
|
|
23
|
-
* @version 1.0.
|
|
23
|
+
* @version 1.0.1
|
|
24
24
|
*/
|
|
25
25
|
var PatchedGridOperator = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -72,8 +72,8 @@ var PatchedGridOperator = /*#__PURE__*/function () {
|
|
|
72
72
|
obj['blockchain_account_address'] = _ApiClient["default"].convertToType(data['blockchain_account_address'], 'String');
|
|
73
73
|
}
|
|
74
74
|
|
|
75
|
-
if (data.hasOwnProperty('
|
|
76
|
-
obj['
|
|
75
|
+
if (data.hasOwnProperty('website_url')) {
|
|
76
|
+
obj['website_url'] = _ApiClient["default"].convertToType(data['website_url'], 'String');
|
|
77
77
|
}
|
|
78
78
|
|
|
79
79
|
if (data.hasOwnProperty('is_active')) {
|
|
@@ -123,10 +123,10 @@ PatchedGridOperator.prototype['location'] = undefined;
|
|
|
123
123
|
PatchedGridOperator.prototype['blockchain_account_address'] = undefined;
|
|
124
124
|
/**
|
|
125
125
|
* Not required. 200 characters or fewer.
|
|
126
|
-
* @member {String}
|
|
126
|
+
* @member {String} website_url
|
|
127
127
|
*/
|
|
128
128
|
|
|
129
|
-
PatchedGridOperator.prototype['
|
|
129
|
+
PatchedGridOperator.prototype['website_url'] = undefined;
|
|
130
130
|
/**
|
|
131
131
|
* True if organization is active. Default True.
|
|
132
132
|
* @member {Boolean} is_active
|