-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update API response types in user_api.py and control_api.py
- Loading branch information
1 parent
3646789
commit 9b45b2c
Showing
20 changed files
with
1,285 additions
and
754 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# ITranslator | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**label** | **str** | | [optional] [readonly] | ||
**priority** | **int** | | [optional] | ||
**key** | **str** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from openapi_client.models.i_translator import ITranslator | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of ITranslator from a JSON string | ||
i_translator_instance = ITranslator.from_json(json) | ||
# print the JSON string representation of the object | ||
print(ITranslator.to_json()) | ||
|
||
# convert the object into a dict | ||
i_translator_dict = i_translator_instance.to_dict() | ||
# create an instance of ITranslator from a dict | ||
i_translator_form_dict = i_translator.from_dict(i_translator_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) | ||
|
||
|
Oops, something went wrong.