-
Notifications
You must be signed in to change notification settings - Fork 1
Feat: ENG-25425: Add upload endpoints #59
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
Changes from all commits
84d4c18
4503cd0
0cddec2
6682f04
991f529
b172d9c
11b6f7a
9ec882e
4f142a3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,6 +2,10 @@ | |
| __pycache__/ | ||
| *.py[cod] | ||
| *$py.class | ||
| uv.lock | ||
| .idea | ||
| .vscode | ||
| .DS_Store | ||
|
|
||
| # C extensions | ||
| *.so | ||
|
|
||
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| # CancelMultipartUpload200Response | ||
|
|
||
|
|
||
| ## Properties | ||
|
|
||
| Name | Type | Description | Notes | ||
| ------------ | ------------- | ------------- | ------------- | ||
| **success** | **bool** | Cancellation status | [optional] | ||
| **message** | **str** | Cancellation message | [optional] | ||
|
|
||
| ## Example | ||
|
|
||
| ```python | ||
| from lilt.models.cancel_multipart_upload200_response import CancelMultipartUpload200Response | ||
|
|
||
| # TODO update the JSON string below | ||
| json = "{}" | ||
| # create an instance of CancelMultipartUpload200Response from a JSON string | ||
| cancel_multipart_upload200_response_instance = CancelMultipartUpload200Response.from_json(json) | ||
| # print the JSON string representation of the object | ||
| print(CancelMultipartUpload200Response.to_json()) | ||
|
|
||
| # convert the object into a dict | ||
| cancel_multipart_upload200_response_dict = cancel_multipart_upload200_response_instance.to_dict() | ||
| # create an instance of CancelMultipartUpload200Response from a dict | ||
| cancel_multipart_upload200_response_from_dict = CancelMultipartUpload200Response.from_dict(cancel_multipart_upload200_response_dict) | ||
| ``` | ||
| [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
|
||
|
|
This file was deleted.
This file was deleted.
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.