Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Fix update collaboration empty response (box/box-openapi#452) #291

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .codegen.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{ "engineHash": "2bf4a47", "specHash": "57614c2", "version": "1.4.0" }
{ "engineHash": "fc49b1f", "specHash": "739d87b", "version": "1.4.0" }
6 changes: 3 additions & 3 deletions box_sdk_gen/managers/folder_classifications.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def get_classification_on_folder(
URL explicitly, for example


`/folders/:id//enterprise_12345/securityClassification-6VMVochwUWo`.
`/folders/:id/enterprise_12345/securityClassification-6VMVochwUWo`.

:param folder_id: The unique identifier that represent a folder.

Expand Down Expand Up @@ -164,7 +164,7 @@ def add_classification_to_folder(
URL explicitly, for example


`/folders/:id//enterprise_12345/securityClassification-6VMVochwUWo`.
`/folders/:id/enterprise_12345/securityClassification-6VMVochwUWo`.

:param folder_id: The unique identifier that represent a folder.

Expand Down Expand Up @@ -289,7 +289,7 @@ def delete_classification_from_folder(
URL explicitly, for example


`/folders/:id//enterprise_12345/securityClassification-6VMVochwUWo`.
`/folders/:id/enterprise_12345/securityClassification-6VMVochwUWo`.

:param folder_id: The unique identifier that represent a folder.

Expand Down
6 changes: 3 additions & 3 deletions docs/folder_classifications.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ has been applied to a folder.

This API can also be called by including the enterprise ID in the
URL explicitly, for example
`/folders/:id//enterprise_12345/securityClassification-6VMVochwUWo`.
`/folders/:id/enterprise_12345/securityClassification-6VMVochwUWo`.

This operation is performed by calling function `get_classification_on_folder`.

Expand Down Expand Up @@ -48,7 +48,7 @@ classification to add.

This API can also be called by including the enterprise ID in the
URL explicitly, for example
`/folders/:id//enterprise_12345/securityClassification-6VMVochwUWo`.
`/folders/:id/enterprise_12345/securityClassification-6VMVochwUWo`.

This operation is performed by calling function `add_classification_to_folder`.

Expand Down Expand Up @@ -122,7 +122,7 @@ Removes any classifications from a folder.

This API can also be called by including the enterprise ID in the
URL explicitly, for example
`/folders/:id//enterprise_12345/securityClassification-6VMVochwUWo`.
`/folders/:id/enterprise_12345/securityClassification-6VMVochwUWo`.

This operation is performed by calling function `delete_classification_from_folder`.

Expand Down
Loading