Skip to content

Commit 39de959

Browse files
committed
PATCH: fix document elements list uuids
1 parent 16d33d3 commit 39de959

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

bimdata_api_client/models/document_with_element_list.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class DocumentWithElementList(object):
3535
"""
3636
openapi_types = {
3737
'document': 'Document',
38-
'element_uuids': 'list[int]'
38+
'element_uuids': 'list[str]'
3939
}
4040

4141
attribute_map = {
@@ -85,7 +85,7 @@ def element_uuids(self):
8585
8686
8787
:return: The element_uuids of this DocumentWithElementList. # noqa: E501
88-
:rtype: list[int]
88+
:rtype: list[str]
8989
"""
9090
return self._element_uuids
9191

@@ -95,7 +95,7 @@ def element_uuids(self, element_uuids):
9595
9696
9797
:param element_uuids: The element_uuids of this DocumentWithElementList. # noqa: E501
98-
:type: list[int]
98+
:type: list[str]
9999
"""
100100

101101
self._element_uuids = element_uuids

docs/DocumentWithElementList.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**document** | [**Document**](Document.md) | | [optional]
7-
**element_uuids** | **list[int]** | | [optional] [readonly]
7+
**element_uuids** | **list[str]** | | [optional] [readonly]
88

99
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1010

test/test_document_with_element_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def make_instance(self, include_optional):
5454
ifc_id = '0',
5555
user_permission = 56, ),
5656
element_uuids = [
57-
56
57+
'0'
5858
]
5959
)
6060
else :

0 commit comments

Comments
 (0)