-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release release-20241106094914 (#95)
Co-authored-by: github-actions[bot] <[email protected]>
- Loading branch information
1 parent
5df63b5
commit 67961f5
Showing
119 changed files
with
11,206 additions
and
643 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,5 +65,4 @@ target/ | |
#Ipython Notebook | ||
.ipynb_checkpoints | ||
|
||
|
||
pyproject.toml |
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,38 @@ | ||
# ArduinoAction | ||
|
||
ArduinoAction media type (default view) | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**created_by** | **str** | Id of the user who created the action | [optional] | ||
**description** | **str** | The description of the action | [optional] | ||
**email** | [**EmailAction**](EmailAction.md) | | [optional] | ||
**id** | **str** | The id of the action | [optional] | ||
**kind** | **str** | The kind of the action | [optional] | ||
**name** | **str** | The name of the action | [optional] | ||
**organization_id** | **str** | Id of the organization the trigger belongs to | [optional] | ||
**push_notification** | [**PushAction**](PushAction.md) | | [optional] | ||
**trigger_id** | **str** | Id of the trigger the action is associated to | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from iot_api_client.models.arduino_action import ArduinoAction | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of ArduinoAction from a JSON string | ||
arduino_action_instance = ArduinoAction.from_json(json) | ||
# print the JSON string representation of the object | ||
print(ArduinoAction.to_json()) | ||
|
||
# convert the object into a dict | ||
arduino_action_dict = arduino_action_instance.to_dict() | ||
# create an instance of ArduinoAction from a dict | ||
arduino_action_from_dict = ArduinoAction.from_dict(arduino_action_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.