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

Commit 76310d2

Browse files
committed
PATCH: rename element_ids to element_uuids
1 parent 491e93a commit 76310d2

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

docs/DocumentWithElementList.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**document** | [**Document**](Document.md) | | [optional]
8-
**elementIds** | **[Number]** | | [optional] [readonly]
8+
**elementUuids** | **[Number]** | | [optional] [readonly]
99

1010

src/model/DocumentWithElementList.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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 {
6767
DocumentWithElementList.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

test/model/DocumentWithElementList.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@
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
});

0 commit comments

Comments
 (0)