You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: bimdata_api_client/api/collaboration_api.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8815,7 +8815,7 @@ def create_document(
8815
8815
):
8816
8816
"""Create a document # noqa: E501
8817
8817
8818
-
Create a document. If the document is one of {'GLTF', 'OBJ', 'DWG', 'DXF', 'IFC', 'POINT_CLOUD'}, a model will be created and attached to this document Required scopes: document:write # noqa: E501
8818
+
Create a document. If the document is one of {'DWG', 'POINT_CLOUD', 'IFC', 'DXF', 'OBJ', 'GLTF'}, a model will be created and attached to this document Required scopes: document:write # noqa: E501
8819
8819
This method makes a synchronous HTTP request by default. To make an
description (str, none_type): Description of the file. [optional] # noqa: E501
163
166
process_hint (str): Provide a info about the document in order to customize the way it is processed. * `PHOTOSPHERE` - PHOTOSPHERE. [optional] if omitted the server will use the default value of "PHOTOSPHERE" # noqa: E501
description (str, none_type): Description of the file. [optional] # noqa: E501
253
257
process_hint (str): Provide a info about the document in order to customize the way it is processed. * `PHOTOSPHERE` - PHOTOSPHERE. [optional] if omitted the server will use the default value of "PHOTOSPHERE" # noqa: E501
Copy file name to clipboardExpand all lines: docs/CollaborationApi.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1481,14 +1481,14 @@ with bimdata_api_client.ApiClient(configuration) as api_client:
1481
1481
id=1# int | A unique integer value identifying this project.
1482
1482
write_folder_request = [
1483
1483
WriteFolderRequest(
1484
-
parent_id=1,
1485
-
default_permission=1,
1486
1484
name="name_example",
1485
+
default_permission=1,
1486
+
parent_id=1,
1487
1487
children=[
1488
1488
WriteFolder(
1489
-
parent_id=1,
1490
-
default_permission=1,
1491
1489
name="name_example",
1490
+
default_permission=1,
1491
+
parent_id=1,
1492
1492
children=None,
1493
1493
),
1494
1494
],
@@ -1545,7 +1545,7 @@ Name | Type | Description | Notes
1545
1545
1546
1546
Create a document
1547
1547
1548
-
Create a document. If the document is one of {'GLTF', 'OBJ', 'DWG', 'DXF', 'IFC', 'POINT_CLOUD'}, a model will be created and attached to this document Required scopes: document:write
1548
+
Create a document. If the document is one of {'DWG', 'POINT_CLOUD', 'IFC', 'DXF', 'OBJ', 'GLTF'}, a model will be created and attached to this document Required scopes: document:write
Copy file name to clipboardExpand all lines: docs/ModelDocument.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,7 @@ Name | Type | Description | Notes
16
16
**user_permission** | **int** | Aggregate of group user permissions and folder default permission | [readonly]
17
17
**office_preview** | **str, none_type** | Office files will be converted as pdf to provide a web preview. Supported extensions are .ppt, .pptx, .odp, .xls, .xlsx, .ods, .doc, .docx, .odt | [readonly]
18
18
**file_name** | **str** | Full name of the file | [optional]
19
+
**parent_id** | **int, none_type** | | [optional]
19
20
**description** | **str, none_type** | Description of the file | [optional]
20
21
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
Copy file name to clipboardExpand all lines: docs/ModelDocumentRequest.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
7
7
**name** | **str** | Shown name of the file |
8
8
**file** | **file_type** | |
9
9
**file_name** | **str** | Full name of the file | [optional]
10
+
**parent_id** | **int, none_type** | | [optional]
10
11
**description** | **str, none_type** | Description of the file | [optional]
11
12
**process_hint** | **str** | Provide a info about the document in order to customize the way it is processed. * `PHOTOSPHERE` - PHOTOSPHERE | [optional] if omitted the server will use the default value of "PHOTOSPHERE"
12
13
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
**groups_permissions** | [**[GroupFolderRead]**](GroupFolderRead.md) | List of group permissions | [readonly]
9
+
**user_permission** | **int** | Aggregate of group user permissions and folder default permission | [readonly]
13
10
**name** | **str** | Name of the folder |
14
-
**type** | **str** | DEPRECATED: Use 'nature' instead. Value is \"Folder\". It is usefull to parse the tree and discriminate folders and files | [readonly]
15
11
**nature** | **str** | Value is \"Folder\". It is usefull to parse the tree and discriminate folders and files | [readonly]
**created_at** | **datetime** | Creation date | [readonly]
14
+
**id** | **int** | | [readonly]
15
+
**type** | **str** | DEPRECATED: Use 'nature' instead. Value is \"Folder\". It is usefull to parse the tree and discriminate folders and files | [readonly]
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
0 commit comments