Skip to content
This repository was archived by the owner on Nov 18, 2025. It is now read-only.

Commit ec5e8cb

Browse files
committed
PATCH: add missing ifc.xkt_file
1 parent a786d91 commit ec5e8cb

3 files changed

Lines changed: 15 additions & 0 deletions

File tree

docs/Ifc.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Name | Type | Description | Notes
1818
**gltfFile** | **String** | | [optional]
1919
**bvhTreeFile** | **String** | | [optional]
2020
**viewer360File** | **String** | | [optional]
21+
**xktFile** | **String** | | [optional]
2122
**projectId** | **String** | | [optional]
2223
**worldPosition** | **[Number]** | [x,y,z] array of the position of the local_placement in world coordinates | [optional]
2324

src/model/Ifc.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,9 @@ class Ifc {
9191
if (data.hasOwnProperty('viewer_360_file')) {
9292
obj['viewer_360_file'] = ApiClient.convertToType(data['viewer_360_file'], 'String');
9393
}
94+
if (data.hasOwnProperty('xkt_file')) {
95+
obj['xkt_file'] = ApiClient.convertToType(data['xkt_file'], 'String');
96+
}
9497
if (data.hasOwnProperty('project_id')) {
9598
obj['project_id'] = ApiClient.convertToType(data['project_id'], 'String');
9699
}
@@ -174,6 +177,11 @@ Ifc.prototype['bvh_tree_file'] = undefined;
174177
*/
175178
Ifc.prototype['viewer_360_file'] = undefined;
176179

180+
/**
181+
* @member {String} xkt_file
182+
*/
183+
Ifc.prototype['xkt_file'] = undefined;
184+
177185
/**
178186
* @member {String} project_id
179187
*/

test/model/Ifc.spec.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,12 @@
138138
//expect(instance).to.be();
139139
});
140140

141+
it('should have the property xktFile (base name: "xkt_file")', function() {
142+
// uncomment below and update the code to test the property xktFile
143+
//var instane = new bimdata.Ifc();
144+
//expect(instance).to.be();
145+
});
146+
141147
it('should have the property projectId (base name: "project_id")', function() {
142148
// uncomment below and update the code to test the property projectId
143149
//var instane = new bimdata.Ifc();

0 commit comments

Comments
 (0)