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 {'POINT_CLOUD', 'IFC', 'GLTF', 'DWG', 'OBJ', 'DXF'}, 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 {'DXF', 'OBJ', 'IFC', 'DWG', 'GLTF', 'POINT_CLOUD'}, 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
north_vector ([[float]], none_type): This field is only for information. Updating it won't impact the export.. [optional] # noqa: E501
191
183
recommanded_2d_angle (float, none_type): This is the angle in clockwise degree to apply on the 2D to optimise the horizontality of objects. This field is only for information. Updating it won't impact the export.. [optional] # noqa: E501
192
184
layout_name (str, none_type): The name of the DWG layout (only set when type==DWG). [optional] # noqa: E501
north_vector ([[float]], none_type): This field is only for information. Updating it won't impact the export.. [optional] # noqa: E501
282
273
recommanded_2d_angle (float, none_type): This is the angle in clockwise degree to apply on the 2D to optimise the horizontality of objects. This field is only for information. Updating it won't impact the export.. [optional] # noqa: E501
283
274
layout_name (str, none_type): The name of the DWG layout (only set when type==DWG). [optional] # noqa: E501
Copy file name to clipboardExpand all lines: docs/CollaborationApi.md
+3-3Lines changed: 3 additions & 3 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
1484
default_permission=1,
1486
1485
name="name_example",
1486
+
parent_id=1,
1487
1487
children=[
1488
1488
WriteFolder(
1489
-
parent_id=1,
1490
1489
default_permission=1,
1491
1490
name="name_example",
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 {'POINT_CLOUD', 'IFC', 'GLTF', 'DWG', 'OBJ', 'DXF'}, a model will be created and attached to this document Required scopes: document:write
1548
+
Create a document. If the document is one of {'DXF', 'OBJ', 'IFC', 'DWG', 'GLTF', 'POINT_CLOUD'}, a model will be created and attached to this document Required scopes: document:write
0 commit comments