@ricado/api-client 2.3.28 → 2.4.0
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/dist/ricado.api.client.js +1 -1
- package/lib/Controllers/Lab/Site/DehydratorController.js +198 -0
- package/lib/Controllers/Lab/Site/FruitProfileController.js +204 -0
- package/lib/Controllers/Lab/Site/LabController.js +222 -0
- package/lib/Controllers/Lab/Site/RackController.js +222 -0
- package/lib/Controllers/Lab/Site/RackPositionController.js +207 -0
- package/lib/Controllers/Lab/Site/SampleController.js +927 -0
- package/lib/Controllers/Lab/Site/SampleFailureReasonController.js +192 -0
- package/lib/Controllers/Lab/Site/SampleResultController.js +905 -0
- package/lib/Controllers/Lab/Site/index.js +46 -0
- package/lib/Controllers/Lab/index.js +25 -0
- package/lib/Controllers/Packhouse/Site/ShiftController.js +304 -0
- package/lib/Controllers/index.js +9 -6
- package/lib/Models/Lab/Site/DehydratorModel.js +250 -0
- package/lib/Models/Lab/Site/FruitProfileModel.js +303 -0
- package/lib/Models/Lab/Site/LabModel.js +365 -0
- package/lib/Models/Lab/Site/RackModel.js +358 -0
- package/lib/Models/Lab/Site/RackPositionModel.js +525 -0
- package/lib/Models/Lab/Site/SampleFailureReasonModel.js +195 -0
- package/lib/Models/Lab/Site/SampleModel.js +545 -0
- package/lib/Models/Lab/Site/SampleResultModel.js +545 -0
- package/lib/Models/Lab/Site/index.js +46 -0
- package/lib/Models/Lab/index.js +25 -0
- package/lib/Models/index.js +7 -4
- package/lib/PackageVersion.js +1 -1
- package/lib/index.d.ts +10348 -7537
- package/package.json +1 -1
- package/src/Controllers/Lab/Site/DehydratorController.js +175 -0
- package/src/Controllers/Lab/Site/FruitProfileController.js +181 -0
- package/src/Controllers/Lab/Site/LabController.js +199 -0
- package/src/Controllers/Lab/Site/RackController.js +199 -0
- package/src/Controllers/Lab/Site/RackPositionController.js +184 -0
- package/src/Controllers/Lab/Site/SampleController.js +1067 -0
- package/src/Controllers/Lab/Site/SampleFailureReasonController.js +169 -0
- package/src/Controllers/Lab/Site/SampleResultController.js +1036 -0
- package/src/Controllers/Lab/Site/index.js +30 -0
- package/src/Controllers/Lab/index.js +16 -0
- package/src/Controllers/Packhouse/Site/ShiftController.js +367 -0
- package/src/Controllers/index.js +2 -0
- package/src/Models/Lab/Site/DehydratorModel.js +234 -0
- package/src/Models/Lab/Site/FruitProfileModel.js +290 -0
- package/src/Models/Lab/Site/LabModel.js +372 -0
- package/src/Models/Lab/Site/RackModel.js +358 -0
- package/src/Models/Lab/Site/RackPositionModel.js +600 -0
- package/src/Models/Lab/Site/SampleFailureReasonModel.js +170 -0
- package/src/Models/Lab/Site/SampleModel.js +565 -0
- package/src/Models/Lab/Site/SampleResultModel.js +565 -0
- package/src/Models/Lab/Site/index.js +30 -0
- package/src/Models/Lab/index.js +16 -0
- package/src/Models/index.js +2 -0
- package/src/PackageVersion.js +1 -1
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* File Auto-Generated by the RICADO Gen 4 PHP API Project
|
|
3
|
+
*
|
|
4
|
+
* Do Not Edit this File Manually!
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import RequestHelper from '../../../RequestHelper';
|
|
8
|
+
import RackModel from '../../../Models/Lab/Site/RackModel';
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Controller Class for Racks
|
|
12
|
+
*
|
|
13
|
+
* @class
|
|
14
|
+
*/
|
|
15
|
+
class RackController
|
|
16
|
+
{
|
|
17
|
+
/**
|
|
18
|
+
* Retrieve a Rack [GET /lab/sites/{siteId}/racks/{id}]
|
|
19
|
+
*
|
|
20
|
+
* @static
|
|
21
|
+
* @public
|
|
22
|
+
* @param {number} siteId The Site ID
|
|
23
|
+
* @param {string} id The Rack ID
|
|
24
|
+
* @return {Promise<RackModel>}
|
|
25
|
+
*/
|
|
26
|
+
static getOne(siteId, id)
|
|
27
|
+
{
|
|
28
|
+
return new Promise((resolve, reject) => {
|
|
29
|
+
RequestHelper.getRequest(`/lab/sites/${siteId}/racks/${id}`)
|
|
30
|
+
.then((result) => {
|
|
31
|
+
let resolveValue = (function(){
|
|
32
|
+
return RackModel.fromJSON(result, siteId);
|
|
33
|
+
}());
|
|
34
|
+
|
|
35
|
+
resolve(resolveValue);
|
|
36
|
+
})
|
|
37
|
+
.catch(error => reject(error));
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Update a Rack [PATCH /lab/sites/{siteId}/racks/{id}]
|
|
43
|
+
*
|
|
44
|
+
* @static
|
|
45
|
+
* @public
|
|
46
|
+
* @param {number} siteId The Site ID
|
|
47
|
+
* @param {string} id The Rack ID
|
|
48
|
+
* @param {RackController.UpdateData} updateData The Rack Update Data
|
|
49
|
+
* @return {Promise<RackModel>}
|
|
50
|
+
*/
|
|
51
|
+
static update(siteId, id, updateData)
|
|
52
|
+
{
|
|
53
|
+
return new Promise((resolve, reject) => {
|
|
54
|
+
RequestHelper.patchRequest(`/lab/sites/${siteId}/racks/${id}`, updateData)
|
|
55
|
+
.then((result) => {
|
|
56
|
+
let resolveValue = (function(){
|
|
57
|
+
return RackModel.fromJSON(result, siteId);
|
|
58
|
+
}());
|
|
59
|
+
|
|
60
|
+
resolve(resolveValue);
|
|
61
|
+
})
|
|
62
|
+
.catch(error => reject(error));
|
|
63
|
+
});
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* Delete a Rack [DELETE /lab/sites/{siteId}/racks/{id}]
|
|
68
|
+
*
|
|
69
|
+
* @static
|
|
70
|
+
* @public
|
|
71
|
+
* @param {number} siteId The Site ID
|
|
72
|
+
* @param {string} id The Rack ID
|
|
73
|
+
* @return {Promise<boolean>}
|
|
74
|
+
*/
|
|
75
|
+
static delete(siteId, id)
|
|
76
|
+
{
|
|
77
|
+
return new Promise((resolve, reject) => {
|
|
78
|
+
RequestHelper.deleteRequest(`/lab/sites/${siteId}/racks/${id}`)
|
|
79
|
+
.then((result) => {
|
|
80
|
+
resolve(result ?? true);
|
|
81
|
+
})
|
|
82
|
+
.catch(error => reject(error));
|
|
83
|
+
});
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
/**
|
|
87
|
+
* List all Racks [GET /lab/sites/{siteId}/racks]
|
|
88
|
+
*
|
|
89
|
+
* @static
|
|
90
|
+
* @public
|
|
91
|
+
* @param {number} siteId The Site ID
|
|
92
|
+
* @param {RackController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
93
|
+
* @return {Promise<RackModel[]>}
|
|
94
|
+
*/
|
|
95
|
+
static getAll(siteId, queryParameters = {})
|
|
96
|
+
{
|
|
97
|
+
return new Promise((resolve, reject) => {
|
|
98
|
+
RequestHelper.getRequest(`/lab/sites/${siteId}/racks`, queryParameters)
|
|
99
|
+
.then((result) => {
|
|
100
|
+
let resolveValue = (function(){
|
|
101
|
+
if(Array.isArray(result) !== true)
|
|
102
|
+
{
|
|
103
|
+
return [];
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
return result.map((resultItem) => {
|
|
107
|
+
return (function(){
|
|
108
|
+
return RackModel.fromJSON(resultItem, siteId);
|
|
109
|
+
}());
|
|
110
|
+
});
|
|
111
|
+
}());
|
|
112
|
+
|
|
113
|
+
resolve(resolveValue);
|
|
114
|
+
})
|
|
115
|
+
.catch(error => reject(error));
|
|
116
|
+
});
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* Create a Rack [POST /lab/sites/{siteId}/racks]
|
|
121
|
+
*
|
|
122
|
+
* @static
|
|
123
|
+
* @public
|
|
124
|
+
* @param {number} siteId The Site ID
|
|
125
|
+
* @param {RackController.CreateData} createData The Rack Create Data
|
|
126
|
+
* @return {Promise<RackModel>}
|
|
127
|
+
*/
|
|
128
|
+
static create(siteId, createData)
|
|
129
|
+
{
|
|
130
|
+
return new Promise((resolve, reject) => {
|
|
131
|
+
RequestHelper.postRequest(`/lab/sites/${siteId}/racks`, createData)
|
|
132
|
+
.then((result) => {
|
|
133
|
+
let resolveValue = (function(){
|
|
134
|
+
return RackModel.fromJSON(result, siteId);
|
|
135
|
+
}());
|
|
136
|
+
|
|
137
|
+
resolve(resolveValue);
|
|
138
|
+
})
|
|
139
|
+
.catch(error => reject(error));
|
|
140
|
+
});
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
export default RackController;
|
|
145
|
+
|
|
146
|
+
/**
|
|
147
|
+
* The Optional Query Parameters for the getAll Function
|
|
148
|
+
*
|
|
149
|
+
* @typedef {Object} RackController.GetAllQueryParameters
|
|
150
|
+
* @property {?number} [rtuId] The RTU this Rack belongs to
|
|
151
|
+
* @property {string} [name] The Name of this Rack
|
|
152
|
+
* @property {string} [labId] The Lab that owns this Rack
|
|
153
|
+
* @memberof Controllers.Lab.Site
|
|
154
|
+
*/
|
|
155
|
+
|
|
156
|
+
/**
|
|
157
|
+
* The Create Data for a Rack
|
|
158
|
+
*
|
|
159
|
+
* @typedef {Object} RackController.CreateData
|
|
160
|
+
* @property {?number} [rtuId] The RTU this Rack belongs to
|
|
161
|
+
* @property {string} name The Name of this Rack
|
|
162
|
+
* @property {{disabled: number}} points The Points used by this Rack
|
|
163
|
+
* @property {string} labId The Lab that owns this Rack
|
|
164
|
+
* @property {Array<RackController.VerticalLevel>} [verticalLevels] The Vertical Levels Defined for this Rack
|
|
165
|
+
* @property {boolean} [invertVerticalLevels] Whether the Vertical Levels for this Rack should be Inverted. By Default, Vertical Levels go from the Lowest Level upwards
|
|
166
|
+
* @property {Array<RackController.HorizontalPosition>} [horizontalPositions] The Horizontal Positions defined for this Rack
|
|
167
|
+
* @property {boolean} [invertHorizontalPositions] Whether the Horizontal Positions for this Rack should be Inverted. By Default, Horizontal Positions go from Left to Right
|
|
168
|
+
* @memberof Controllers.Lab.Site
|
|
169
|
+
*/
|
|
170
|
+
|
|
171
|
+
/**
|
|
172
|
+
* The Update Data for a Rack
|
|
173
|
+
*
|
|
174
|
+
* @typedef {Object} RackController.UpdateData
|
|
175
|
+
* @property {string} [name] The Name of this Rack
|
|
176
|
+
* @property {{disabled: number}} [points] The Points used by this Rack
|
|
177
|
+
* @property {string} [labId] The Lab that owns this Rack
|
|
178
|
+
* @property {Array<RackController.VerticalLevel>} [verticalLevels] The Vertical Levels Defined for this Rack
|
|
179
|
+
* @property {boolean} [invertVerticalLevels] Whether the Vertical Levels for this Rack should be Inverted. By Default, Vertical Levels go from the Lowest Level upwards
|
|
180
|
+
* @property {Array<RackController.HorizontalPosition>} [horizontalPositions] The Horizontal Positions defined for this Rack
|
|
181
|
+
* @property {boolean} [invertHorizontalPositions] Whether the Horizontal Positions for this Rack should be Inverted. By Default, Horizontal Positions go from Left to Right
|
|
182
|
+
* @memberof Controllers.Lab.Site
|
|
183
|
+
*/
|
|
184
|
+
|
|
185
|
+
/**
|
|
186
|
+
* A **VerticalLevel** Type
|
|
187
|
+
*
|
|
188
|
+
* @typedef {Object} RackController.VerticalLevel
|
|
189
|
+
* @property {string} name A Name for this Vertical Level
|
|
190
|
+
* @memberof Controllers.Lab.Site
|
|
191
|
+
*/
|
|
192
|
+
|
|
193
|
+
/**
|
|
194
|
+
* A **HorizontalPosition** Type
|
|
195
|
+
*
|
|
196
|
+
* @typedef {Object} RackController.HorizontalPosition
|
|
197
|
+
* @property {string} name A Name for this Horizontal Position
|
|
198
|
+
* @memberof Controllers.Lab.Site
|
|
199
|
+
*/
|
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* File Auto-Generated by the RICADO Gen 4 PHP API Project
|
|
3
|
+
*
|
|
4
|
+
* Do Not Edit this File Manually!
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import RequestHelper from '../../../RequestHelper';
|
|
8
|
+
import RackPositionModel from '../../../Models/Lab/Site/RackPositionModel';
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Controller Class for Rack Positions
|
|
12
|
+
*
|
|
13
|
+
* @class
|
|
14
|
+
*/
|
|
15
|
+
class RackPositionController
|
|
16
|
+
{
|
|
17
|
+
/**
|
|
18
|
+
* Retrieve a Rack Position [GET /lab/sites/{siteId}/rack-positions/{id}]
|
|
19
|
+
*
|
|
20
|
+
* @static
|
|
21
|
+
* @public
|
|
22
|
+
* @param {number} siteId The Site ID
|
|
23
|
+
* @param {string} id The Rack Position ID
|
|
24
|
+
* @return {Promise<RackPositionModel>}
|
|
25
|
+
*/
|
|
26
|
+
static getOne(siteId, id)
|
|
27
|
+
{
|
|
28
|
+
return new Promise((resolve, reject) => {
|
|
29
|
+
RequestHelper.getRequest(`/lab/sites/${siteId}/rack-positions/${id}`)
|
|
30
|
+
.then((result) => {
|
|
31
|
+
let resolveValue = (function(){
|
|
32
|
+
return RackPositionModel.fromJSON(result, siteId);
|
|
33
|
+
}());
|
|
34
|
+
|
|
35
|
+
resolve(resolveValue);
|
|
36
|
+
})
|
|
37
|
+
.catch(error => reject(error));
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Update a Rack Position [PATCH /lab/sites/{siteId}/rack-positions/{id}]
|
|
43
|
+
*
|
|
44
|
+
* @static
|
|
45
|
+
* @public
|
|
46
|
+
* @param {number} siteId The Site ID
|
|
47
|
+
* @param {string} id The Rack Position ID
|
|
48
|
+
* @param {RackPositionController.UpdateData} updateData The Rack Position Update Data
|
|
49
|
+
* @return {Promise<RackPositionModel>}
|
|
50
|
+
*/
|
|
51
|
+
static update(siteId, id, updateData)
|
|
52
|
+
{
|
|
53
|
+
return new Promise((resolve, reject) => {
|
|
54
|
+
RequestHelper.patchRequest(`/lab/sites/${siteId}/rack-positions/${id}`, updateData)
|
|
55
|
+
.then((result) => {
|
|
56
|
+
let resolveValue = (function(){
|
|
57
|
+
return RackPositionModel.fromJSON(result, siteId);
|
|
58
|
+
}());
|
|
59
|
+
|
|
60
|
+
resolve(resolveValue);
|
|
61
|
+
})
|
|
62
|
+
.catch(error => reject(error));
|
|
63
|
+
});
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* Delete a Rack Position [DELETE /lab/sites/{siteId}/rack-positions/{id}]
|
|
68
|
+
*
|
|
69
|
+
* @static
|
|
70
|
+
* @public
|
|
71
|
+
* @param {number} siteId The Site ID
|
|
72
|
+
* @param {string} id The Rack Position ID
|
|
73
|
+
* @return {Promise<boolean>}
|
|
74
|
+
*/
|
|
75
|
+
static delete(siteId, id)
|
|
76
|
+
{
|
|
77
|
+
return new Promise((resolve, reject) => {
|
|
78
|
+
RequestHelper.deleteRequest(`/lab/sites/${siteId}/rack-positions/${id}`)
|
|
79
|
+
.then((result) => {
|
|
80
|
+
resolve(result ?? true);
|
|
81
|
+
})
|
|
82
|
+
.catch(error => reject(error));
|
|
83
|
+
});
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
/**
|
|
87
|
+
* List all Rack Positions [GET /lab/sites/{siteId}/rack-positions]
|
|
88
|
+
*
|
|
89
|
+
* @static
|
|
90
|
+
* @public
|
|
91
|
+
* @param {number} siteId The Site ID
|
|
92
|
+
* @param {RackPositionController.GetAllQueryParameters} [queryParameters] The Optional Query Parameters
|
|
93
|
+
* @return {Promise<RackPositionModel[]>}
|
|
94
|
+
*/
|
|
95
|
+
static getAll(siteId, queryParameters = {})
|
|
96
|
+
{
|
|
97
|
+
return new Promise((resolve, reject) => {
|
|
98
|
+
RequestHelper.getRequest(`/lab/sites/${siteId}/rack-positions`, queryParameters)
|
|
99
|
+
.then((result) => {
|
|
100
|
+
let resolveValue = (function(){
|
|
101
|
+
if(Array.isArray(result) !== true)
|
|
102
|
+
{
|
|
103
|
+
return [];
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
return result.map((resultItem) => {
|
|
107
|
+
return (function(){
|
|
108
|
+
return RackPositionModel.fromJSON(resultItem, siteId);
|
|
109
|
+
}());
|
|
110
|
+
});
|
|
111
|
+
}());
|
|
112
|
+
|
|
113
|
+
resolve(resolveValue);
|
|
114
|
+
})
|
|
115
|
+
.catch(error => reject(error));
|
|
116
|
+
});
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* Create a Rack Position [POST /lab/sites/{siteId}/rack-positions]
|
|
121
|
+
*
|
|
122
|
+
* @static
|
|
123
|
+
* @public
|
|
124
|
+
* @param {number} siteId The Site ID
|
|
125
|
+
* @param {RackPositionController.CreateData} createData The Rack Position Create Data
|
|
126
|
+
* @return {Promise<RackPositionModel>}
|
|
127
|
+
*/
|
|
128
|
+
static create(siteId, createData)
|
|
129
|
+
{
|
|
130
|
+
return new Promise((resolve, reject) => {
|
|
131
|
+
RequestHelper.postRequest(`/lab/sites/${siteId}/rack-positions`, createData)
|
|
132
|
+
.then((result) => {
|
|
133
|
+
let resolveValue = (function(){
|
|
134
|
+
return RackPositionModel.fromJSON(result, siteId);
|
|
135
|
+
}());
|
|
136
|
+
|
|
137
|
+
resolve(resolveValue);
|
|
138
|
+
})
|
|
139
|
+
.catch(error => reject(error));
|
|
140
|
+
});
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
export default RackPositionController;
|
|
145
|
+
|
|
146
|
+
/**
|
|
147
|
+
* The Optional Query Parameters for the getAll Function
|
|
148
|
+
*
|
|
149
|
+
* @typedef {Object} RackPositionController.GetAllQueryParameters
|
|
150
|
+
* @property {?number} [rtuId] The RTU this Rack Position belongs to
|
|
151
|
+
* @property {string} [name] The Name of this Rack Position
|
|
152
|
+
* @property {string} [labId] The Lab that owns this Rack Position
|
|
153
|
+
* @property {string} [rackId] The Rack associated with this Rack Position
|
|
154
|
+
* @property {number} [verticalLevelIndex] The Index of the Vertical Level in the Rack where this Position resides
|
|
155
|
+
* @property {number} [horizontalPositionIndex] The Index of the Horizontal Position in the Rack where this Position resides
|
|
156
|
+
* @memberof Controllers.Lab.Site
|
|
157
|
+
*/
|
|
158
|
+
|
|
159
|
+
/**
|
|
160
|
+
* The Create Data for a Rack Position
|
|
161
|
+
*
|
|
162
|
+
* @typedef {Object} RackPositionController.CreateData
|
|
163
|
+
* @property {?number} [rtuId] The RTU this Rack Position belongs to
|
|
164
|
+
* @property {string} name The Name of this Rack Position
|
|
165
|
+
* @property {{pushButton: number, indicatorLight: number, temperature: number, calibrationOffset: number, disabled: number, currentSampleId: number, currentSampleStatus: number, nextSampleId: number, startCurrentSampleRequest: number, finishCurrentSampleRequest: number, currentSampleTotalDuration: number, currentSampleWarmUpDuration: number, currentSampleWarmUpCompleted: number, currentSampleBelowTargetDuration: number, currentSampleAboveTargetDuration: number, currentSampleWithinTargetDuration: number, currentSampleSuccessCriteriaMet: number, currentSampleFailureCriteriaMet: number}} points The Points used by this Rack Position
|
|
166
|
+
* @property {string} labId The Lab that owns this Rack Position
|
|
167
|
+
* @property {string} rackId The Rack associated with this Rack Position
|
|
168
|
+
* @property {number} verticalLevelIndex The Index of the Vertical Level in the Rack where this Position resides
|
|
169
|
+
* @property {number} horizontalPositionIndex The Index of the Horizontal Position in the Rack where this Position resides
|
|
170
|
+
* @memberof Controllers.Lab.Site
|
|
171
|
+
*/
|
|
172
|
+
|
|
173
|
+
/**
|
|
174
|
+
* The Update Data for a Rack Position
|
|
175
|
+
*
|
|
176
|
+
* @typedef {Object} RackPositionController.UpdateData
|
|
177
|
+
* @property {string} [name] The Name of this Rack Position
|
|
178
|
+
* @property {{pushButton: number, indicatorLight: number, temperature: number, calibrationOffset: number, disabled: number, currentSampleId: number, currentSampleStatus: number, nextSampleId: number, startCurrentSampleRequest: number, finishCurrentSampleRequest: number, currentSampleTotalDuration: number, currentSampleWarmUpDuration: number, currentSampleWarmUpCompleted: number, currentSampleBelowTargetDuration: number, currentSampleAboveTargetDuration: number, currentSampleWithinTargetDuration: number, currentSampleSuccessCriteriaMet: number, currentSampleFailureCriteriaMet: number}} [points] The Points used by this Rack Position
|
|
179
|
+
* @property {string} [labId] The Lab that owns this Rack Position
|
|
180
|
+
* @property {string} [rackId] The Rack associated with this Rack Position
|
|
181
|
+
* @property {number} [verticalLevelIndex] The Index of the Vertical Level in the Rack where this Position resides
|
|
182
|
+
* @property {number} [horizontalPositionIndex] The Index of the Horizontal Position in the Rack where this Position resides
|
|
183
|
+
* @memberof Controllers.Lab.Site
|
|
184
|
+
*/
|