@teemill/warehouse-prefab-applications 0.10.0 → 0.10.2

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.
Files changed (47) hide show
  1. package/README.md +69 -2
  2. package/api.ts +1 -1
  3. package/base.ts +1 -1
  4. package/common.ts +1 -1
  5. package/configuration.ts +2 -3
  6. package/dist/api.d.ts +1 -1
  7. package/dist/api.js +1 -1
  8. package/dist/base.d.ts +1 -1
  9. package/dist/base.js +1 -1
  10. package/dist/common.d.ts +2 -2
  11. package/dist/common.js +1 -1
  12. package/dist/configuration.d.ts +1 -1
  13. package/dist/configuration.js +2 -2
  14. package/dist/esm/api.d.ts +1 -1
  15. package/dist/esm/api.js +1 -1
  16. package/dist/esm/base.d.ts +1 -1
  17. package/dist/esm/base.js +1 -1
  18. package/dist/esm/common.d.ts +2 -2
  19. package/dist/esm/common.js +1 -1
  20. package/dist/esm/configuration.d.ts +1 -1
  21. package/dist/esm/configuration.js +2 -2
  22. package/dist/esm/index.d.ts +1 -1
  23. package/dist/esm/index.js +1 -1
  24. package/dist/index.d.ts +1 -1
  25. package/dist/index.js +1 -1
  26. package/docs/ApiError.md +22 -0
  27. package/docs/Batch.md +38 -0
  28. package/docs/BatchesApi.md +322 -0
  29. package/docs/CreateBatchRequest.md +20 -0
  30. package/docs/CreateTrayRequest.md +22 -0
  31. package/docs/ListBatchPrefabApplications200Response.md +22 -0
  32. package/docs/ListBatches200Response.md +22 -0
  33. package/docs/ListTrays200Response.md +22 -0
  34. package/docs/PrefabApplication.md +38 -0
  35. package/docs/PrefabApplicationCatalogApplication.md +24 -0
  36. package/docs/PrefabApplicationsApi.md +194 -0
  37. package/docs/PrintPrefabApplication202Response.md +20 -0
  38. package/docs/SuggestTrays200Response.md +20 -0
  39. package/docs/Tray.md +34 -0
  40. package/docs/TrayContents.md +20 -0
  41. package/docs/TraysApi.md +581 -0
  42. package/docs/UpdatePrefabApplicationRequest.md +22 -0
  43. package/docs/UpdateTrayRequest.md +20 -0
  44. package/docs/UpdateTrayRequestContents.md +22 -0
  45. package/docs/ValidationError.md +24 -0
  46. package/index.ts +1 -1
  47. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/warehouse-prefab-applications@0.10.0
1
+ ## @teemill/warehouse-prefab-applications@0.10.2
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @teemill/warehouse-prefab-applications@0.10.0 --save
39
+ npm install @teemill/warehouse-prefab-applications@0.10.2 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -44,3 +44,70 @@ _unPublished (not recommended):_
44
44
  ```
45
45
  npm install PATH_TO_GENERATED_PACKAGE --save
46
46
  ```
47
+
48
+ ### Documentation for API Endpoints
49
+
50
+ All URIs are relative to *https://api.localhost:8080*
51
+
52
+ Class | Method | HTTP request | Description
53
+ ------------ | ------------- | ------------- | -------------
54
+ *BatchesApi* | [**createBatch**](docs/BatchesApi.md#createbatch) | **POST** /v1/warehouse/prefab-applications/batches | Create batch
55
+ *BatchesApi* | [**getBatch**](docs/BatchesApi.md#getbatch) | **GET** /v1/warehouse/prefab-applications/batches/{batchId} | Get batch
56
+ *BatchesApi* | [**listBatchPrefabApplications**](docs/BatchesApi.md#listbatchprefabapplications) | **GET** /v1/warehouse/prefab-applications/batches/{batchId}/prefab-applications | List batch applications
57
+ *BatchesApi* | [**listBatches**](docs/BatchesApi.md#listbatches) | **GET** /v1/warehouse/prefab-applications/batches | List batches
58
+ *BatchesApi* | [**printBatch**](docs/BatchesApi.md#printbatch) | **GET** /v1/warehouse/prefab-applications/batches/{batchId}/print | Print batch
59
+ *PrefabApplicationsApi* | [**getPrefabApplication**](docs/PrefabApplicationsApi.md#getprefabapplication) | **GET** /v1/warehouse/prefab-applications/{prefabApplicationId} | Get prefab application
60
+ *PrefabApplicationsApi* | [**printPrefabApplication**](docs/PrefabApplicationsApi.md#printprefabapplication) | **GET** /v1/warehouse/prefab-applications/{prefabApplicationId}/print | Print
61
+ *PrefabApplicationsApi* | [**updatePrefabApplication**](docs/PrefabApplicationsApi.md#updateprefabapplication) | **PATCH** /v1/warehouse/prefab-applications/{prefabApplicationId} | Update prefab application
62
+ *TraysApi* | [**createTray**](docs/TraysApi.md#createtray) | **POST** /v1/warehouse/prefab-applications/trays | Create tray
63
+ *TraysApi* | [**deleteTray**](docs/TraysApi.md#deletetray) | **DELETE** /v1/warehouse/prefab-applications/trays/{trayId} | Delete tray
64
+ *TraysApi* | [**getTray**](docs/TraysApi.md#gettray) | **GET** /v1/warehouse/prefab-applications/trays/{trayId} | Get tray
65
+ *TraysApi* | [**listTrayPrefabApplications**](docs/TraysApi.md#listtrayprefabapplications) | **GET** /v1/warehouse/prefab-applications/trays/{trayId}/prefab-applications | List tray applications
66
+ *TraysApi* | [**listTrays**](docs/TraysApi.md#listtrays) | **GET** /v1/warehouse/prefab-applications/trays | List trays
67
+ *TraysApi* | [**printTrayLabel**](docs/TraysApi.md#printtraylabel) | **GET** /v1/warehouse/prefab-applications/trays/{trayId}/print | Print tray label
68
+ *TraysApi* | [**printTrayLabels**](docs/TraysApi.md#printtraylabels) | **GET** /v1/warehouse/prefab-applications/trays/print | Print trays
69
+ *TraysApi* | [**suggestTrays**](docs/TraysApi.md#suggesttrays) | **GET** /v1/warehouse/prefab-applications/trays/suggest | Suggest trays
70
+ *TraysApi* | [**updateTray**](docs/TraysApi.md#updatetray) | **PATCH** /v1/warehouse/prefab-applications/trays/{trayId} | Update tray
71
+
72
+
73
+ ### Documentation For Models
74
+
75
+ - [ApiError](docs/ApiError.md)
76
+ - [Batch](docs/Batch.md)
77
+ - [CreateBatchRequest](docs/CreateBatchRequest.md)
78
+ - [CreateTrayRequest](docs/CreateTrayRequest.md)
79
+ - [ListBatchPrefabApplications200Response](docs/ListBatchPrefabApplications200Response.md)
80
+ - [ListBatches200Response](docs/ListBatches200Response.md)
81
+ - [ListTrays200Response](docs/ListTrays200Response.md)
82
+ - [PrefabApplication](docs/PrefabApplication.md)
83
+ - [PrefabApplicationCatalogApplication](docs/PrefabApplicationCatalogApplication.md)
84
+ - [PrintPrefabApplication202Response](docs/PrintPrefabApplication202Response.md)
85
+ - [SuggestTrays200Response](docs/SuggestTrays200Response.md)
86
+ - [Tray](docs/Tray.md)
87
+ - [TrayContents](docs/TrayContents.md)
88
+ - [UpdatePrefabApplicationRequest](docs/UpdatePrefabApplicationRequest.md)
89
+ - [UpdateTrayRequest](docs/UpdateTrayRequest.md)
90
+ - [UpdateTrayRequestContents](docs/UpdateTrayRequestContents.md)
91
+ - [ValidationError](docs/ValidationError.md)
92
+
93
+
94
+ <a id="documentation-for-authorization"></a>
95
+ ## Documentation For Authorization
96
+
97
+
98
+ Authentication schemes defined for the API:
99
+ <a id="api-key"></a>
100
+ ### api-key
101
+
102
+ - **Type**: API key
103
+ - **API key parameter name**: Authorization
104
+ - **Location**: HTTP header
105
+
106
+ <a id="session-oauth"></a>
107
+ ### session-oauth
108
+
109
+ - **Type**: OAuth
110
+ - **Flow**: password
111
+ - **Authorization URL**:
112
+ - **Scopes**: N/A
113
+
package/api.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Warehouse Prefab Applications API
5
5
  * Manage PodOS Warehouse Prefab Applications
6
6
  *
7
- * The version of the OpenAPI document: 0.10.0
7
+ * The version of the OpenAPI document: 0.10.2
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/base.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Warehouse Prefab Applications API
5
5
  * Manage PodOS Warehouse Prefab Applications
6
6
  *
7
- * The version of the OpenAPI document: 0.10.0
7
+ * The version of the OpenAPI document: 0.10.2
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/common.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Warehouse Prefab Applications API
5
5
  * Manage PodOS Warehouse Prefab Applications
6
6
  *
7
- * The version of the OpenAPI document: 0.10.0
7
+ * The version of the OpenAPI document: 0.10.2
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/configuration.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Warehouse Prefab Applications API
5
5
  * Manage PodOS Warehouse Prefab Applications
6
6
  *
7
- * The version of the OpenAPI document: 0.10.0
7
+ * The version of the OpenAPI document: 0.10.2
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -90,11 +90,10 @@ export class Configuration {
90
90
  this.basePath = param.basePath;
91
91
  this.serverIndex = param.serverIndex;
92
92
  this.baseOptions = {
93
+ ...param.baseOptions,
93
94
  headers: {
94
95
  ...param.baseOptions?.headers,
95
- 'User-Agent': "OpenAPI-Generator/0.10.0/typescript-axios"
96
96
  },
97
- ...param.baseOptions
98
97
  };
99
98
  this.formDataCtor = param.formDataCtor;
100
99
  }
package/dist/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Warehouse Prefab Applications API
3
3
  * Manage PodOS Warehouse Prefab Applications
4
4
  *
5
- * The version of the OpenAPI document: 0.10.0
5
+ * The version of the OpenAPI document: 0.10.2
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/api.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Warehouse Prefab Applications API
6
6
  * Manage PodOS Warehouse Prefab Applications
7
7
  *
8
- * The version of the OpenAPI document: 0.10.0
8
+ * The version of the OpenAPI document: 0.10.2
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/base.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Warehouse Prefab Applications API
3
3
  * Manage PodOS Warehouse Prefab Applications
4
4
  *
5
- * The version of the OpenAPI document: 0.10.0
5
+ * The version of the OpenAPI document: 0.10.2
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/base.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Warehouse Prefab Applications API
6
6
  * Manage PodOS Warehouse Prefab Applications
7
7
  *
8
- * The version of the OpenAPI document: 0.10.0
8
+ * The version of the OpenAPI document: 0.10.2
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Warehouse Prefab Applications API
3
3
  * Manage PodOS Warehouse Prefab Applications
4
4
  *
5
- * The version of the OpenAPI document: 0.10.0
5
+ * The version of the OpenAPI document: 0.10.2
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -62,4 +62,4 @@ export declare const toPathString: (url: URL) => string;
62
62
  *
63
63
  * @export
64
64
  */
65
- export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => <T = unknown, R = AxiosResponse<T, any>>(axios?: AxiosInstance, basePath?: string) => Promise<R>;
65
+ export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => <T = unknown, R = AxiosResponse<T>>(axios?: AxiosInstance, basePath?: string) => Promise<R>;
package/dist/common.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Warehouse Prefab Applications API
6
6
  * Manage PodOS Warehouse Prefab Applications
7
7
  *
8
- * The version of the OpenAPI document: 0.10.0
8
+ * The version of the OpenAPI document: 0.10.2
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Warehouse Prefab Applications API
3
3
  * Manage PodOS Warehouse Prefab Applications
4
4
  *
5
- * The version of the OpenAPI document: 0.10.0
5
+ * The version of the OpenAPI document: 0.10.2
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Warehouse Prefab Applications API
6
6
  * Manage PodOS Warehouse Prefab Applications
7
7
  *
8
- * The version of the OpenAPI document: 0.10.0
8
+ * The version of the OpenAPI document: 0.10.2
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -23,7 +23,7 @@ class Configuration {
23
23
  this.accessToken = param.accessToken;
24
24
  this.basePath = param.basePath;
25
25
  this.serverIndex = param.serverIndex;
26
- this.baseOptions = Object.assign({ headers: Object.assign(Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers), { 'User-Agent': "OpenAPI-Generator/0.10.0/typescript-axios" }) }, param.baseOptions);
26
+ this.baseOptions = Object.assign(Object.assign({}, param.baseOptions), { headers: Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers) });
27
27
  this.formDataCtor = param.formDataCtor;
28
28
  }
29
29
  /**
package/dist/esm/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Warehouse Prefab Applications API
3
3
  * Manage PodOS Warehouse Prefab Applications
4
4
  *
5
- * The version of the OpenAPI document: 0.10.0
5
+ * The version of the OpenAPI document: 0.10.2
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/api.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Warehouse Prefab Applications API
5
5
  * Manage PodOS Warehouse Prefab Applications
6
6
  *
7
- * The version of the OpenAPI document: 0.10.0
7
+ * The version of the OpenAPI document: 0.10.2
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Warehouse Prefab Applications API
3
3
  * Manage PodOS Warehouse Prefab Applications
4
4
  *
5
- * The version of the OpenAPI document: 0.10.0
5
+ * The version of the OpenAPI document: 0.10.2
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/base.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Warehouse Prefab Applications API
5
5
  * Manage PodOS Warehouse Prefab Applications
6
6
  *
7
- * The version of the OpenAPI document: 0.10.0
7
+ * The version of the OpenAPI document: 0.10.2
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Warehouse Prefab Applications API
3
3
  * Manage PodOS Warehouse Prefab Applications
4
4
  *
5
- * The version of the OpenAPI document: 0.10.0
5
+ * The version of the OpenAPI document: 0.10.2
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -62,4 +62,4 @@ export declare const toPathString: (url: URL) => string;
62
62
  *
63
63
  * @export
64
64
  */
65
- export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => <T = unknown, R = AxiosResponse<T, any>>(axios?: AxiosInstance, basePath?: string) => Promise<R>;
65
+ export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => <T = unknown, R = AxiosResponse<T>>(axios?: AxiosInstance, basePath?: string) => Promise<R>;
@@ -4,7 +4,7 @@
4
4
  * Warehouse Prefab Applications API
5
5
  * Manage PodOS Warehouse Prefab Applications
6
6
  *
7
- * The version of the OpenAPI document: 0.10.0
7
+ * The version of the OpenAPI document: 0.10.2
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Warehouse Prefab Applications API
3
3
  * Manage PodOS Warehouse Prefab Applications
4
4
  *
5
- * The version of the OpenAPI document: 0.10.0
5
+ * The version of the OpenAPI document: 0.10.2
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Warehouse Prefab Applications API
5
5
  * Manage PodOS Warehouse Prefab Applications
6
6
  *
7
- * The version of the OpenAPI document: 0.10.0
7
+ * The version of the OpenAPI document: 0.10.2
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -20,7 +20,7 @@ export class Configuration {
20
20
  this.accessToken = param.accessToken;
21
21
  this.basePath = param.basePath;
22
22
  this.serverIndex = param.serverIndex;
23
- this.baseOptions = Object.assign({ headers: Object.assign(Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers), { 'User-Agent': "OpenAPI-Generator/0.10.0/typescript-axios" }) }, param.baseOptions);
23
+ this.baseOptions = Object.assign(Object.assign({}, param.baseOptions), { headers: Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers) });
24
24
  this.formDataCtor = param.formDataCtor;
25
25
  }
26
26
  /**
@@ -2,7 +2,7 @@
2
2
  * Warehouse Prefab Applications API
3
3
  * Manage PodOS Warehouse Prefab Applications
4
4
  *
5
- * The version of the OpenAPI document: 0.10.0
5
+ * The version of the OpenAPI document: 0.10.2
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Warehouse Prefab Applications API
5
5
  * Manage PodOS Warehouse Prefab Applications
6
6
  *
7
- * The version of the OpenAPI document: 0.10.0
7
+ * The version of the OpenAPI document: 0.10.2
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Warehouse Prefab Applications API
3
3
  * Manage PodOS Warehouse Prefab Applications
4
4
  *
5
- * The version of the OpenAPI document: 0.10.0
5
+ * The version of the OpenAPI document: 0.10.2
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Warehouse Prefab Applications API
6
6
  * Manage PodOS Warehouse Prefab Applications
7
7
  *
8
- * The version of the OpenAPI document: 0.10.0
8
+ * The version of the OpenAPI document: 0.10.2
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -0,0 +1,22 @@
1
+ # ApiError
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **code** | **string** | | [optional] [default to undefined]
9
+ **message** | **string** | | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { ApiError } from '@teemill/warehouse-prefab-applications';
15
+
16
+ const instance: ApiError = {
17
+ code,
18
+ message,
19
+ };
20
+ ```
21
+
22
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
package/docs/Batch.md ADDED
@@ -0,0 +1,38 @@
1
+ # Batch
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **id** | **string** | Unique object identifier | [default to undefined]
9
+ **ref** | **string** | A reference to the resource location | [readonly] [default to undefined]
10
+ **number** | **string** | A unique, user-friendly identifier for the batch. | [readonly] [default to undefined]
11
+ **status** | **string** | The status of the batch | [readonly] [default to undefined]
12
+ **size** | **number** | Number of applications in the batch | [readonly] [default to undefined]
13
+ **processed** | **number** | Number of applications processed | [readonly] [default to undefined]
14
+ **userRef** | **string** | A reference to the resource location | [default to undefined]
15
+ **deviceRef** | **string** | A reference to the resource location | [default to undefined]
16
+ **technologyRef** | **string** | A reference to the resource location | [default to undefined]
17
+ **createdAt** | **string** | ISO 8601 Timestamp | [readonly] [default to undefined]
18
+
19
+ ## Example
20
+
21
+ ```typescript
22
+ import { Batch } from '@teemill/warehouse-prefab-applications';
23
+
24
+ const instance: Batch = {
25
+ id,
26
+ ref,
27
+ number,
28
+ status,
29
+ size,
30
+ processed,
31
+ userRef,
32
+ deviceRef,
33
+ technologyRef,
34
+ createdAt,
35
+ };
36
+ ```
37
+
38
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)