This repository was archived by the owner on Nov 18, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 */
175178Ifc . 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 */
Original file line number Diff line number Diff line change 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();
You can’t perform that action at this time.
0 commit comments