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

Commit a85bf00

Browse files
committed
PATCH: fix document elements list uuids
1 parent 76310d2 commit a85bf00

2 files changed

Lines changed: 3 additions & 3 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-
**elementUuids** | **[Number]** | | [optional] [readonly]
8+
**elementUuids** | **[String]** | | [optional] [readonly]
99

1010

src/model/DocumentWithElementList.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class DocumentWithElementList {
5252
obj['document'] = Document.constructFromObject(data['document']);
5353
}
5454
if (data.hasOwnProperty('element_uuids')) {
55-
obj['element_uuids'] = ApiClient.convertToType(data['element_uuids'], ['Number']);
55+
obj['element_uuids'] = ApiClient.convertToType(data['element_uuids'], ['String']);
5656
}
5757
}
5858
return obj;
@@ -67,7 +67,7 @@ class DocumentWithElementList {
6767
DocumentWithElementList.prototype['document'] = undefined;
6868

6969
/**
70-
* @member {Array.<Number>} element_uuids
70+
* @member {Array.<String>} element_uuids
7171
*/
7272
DocumentWithElementList.prototype['element_uuids'] = undefined;
7373

0 commit comments

Comments
 (0)