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 55Name | Type | Description | Notes
66------------ | ------------- | ------------- | -------------
77** document** | [ ** Document** ] ( Document.md ) | | [ optional]
8- ** elementIds ** | ** [ Number] ** | | [ optional] [ readonly]
8+ ** elementUuids ** | ** [ Number] ** | | [ optional] [ readonly]
99
1010
Original file line number Diff line number Diff line change @@ -51,8 +51,8 @@ class DocumentWithElementList {
5151 if ( data . hasOwnProperty ( 'document' ) ) {
5252 obj [ 'document' ] = Document . constructFromObject ( data [ 'document' ] ) ;
5353 }
54- if ( data . hasOwnProperty ( 'element_ids ' ) ) {
55- obj [ 'element_ids ' ] = ApiClient . convertToType ( data [ 'element_ids ' ] , [ 'Number' ] ) ;
54+ if ( data . hasOwnProperty ( 'element_uuids ' ) ) {
55+ obj [ 'element_uuids ' ] = ApiClient . convertToType ( data [ 'element_uuids ' ] , [ 'Number' ] ) ;
5656 }
5757 }
5858 return obj ;
@@ -67,9 +67,9 @@ class DocumentWithElementList {
6767DocumentWithElementList . prototype [ 'document' ] = undefined ;
6868
6969/**
70- * @member {Array.<Number>} element_ids
70+ * @member {Array.<Number>} element_uuids
7171 */
72- DocumentWithElementList . prototype [ 'element_ids ' ] = undefined ;
72+ DocumentWithElementList . prototype [ 'element_uuids ' ] = undefined ;
7373
7474
7575
Original file line number Diff line number Diff line change 6060 //expect(instance).to.be();
6161 } ) ;
6262
63- it ( 'should have the property elementIds (base name: "element_ids ")' , function ( ) {
64- // uncomment below and update the code to test the property elementIds
63+ it ( 'should have the property elementUuids (base name: "element_uuids ")' , function ( ) {
64+ // uncomment below and update the code to test the property elementUuids
6565 //var instane = new bimdata.DocumentWithElementList();
6666 //expect(instance).to.be();
6767 } ) ;
You can’t perform that action at this time.
0 commit comments