-
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.
- Loading branch information
totvslabs
committed
Aug 17, 2023
1 parent
c94d40c
commit fe90256
Showing
12 changed files
with
449 additions
and
14 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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# NotificationSchema | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**client_uuid** | **str** | Notification Client UUID | | ||
**created_at** | **datetime** | | [optional] | ||
**events** | **List[str]** | List of notification events | [optional] | ||
**first_event** | **datetime** | | [optional] | ||
**id** | **str** | Id | | ||
**retries** | **int** | Quantity notification retries | [optional] | ||
**status** | **str** | Notification status | | ||
**updated_at** | **datetime** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from labs_alert_manager_client.models.notification_schema import NotificationSchema | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of NotificationSchema from a JSON string | ||
notification_schema_instance = NotificationSchema.from_json(json) | ||
# print the JSON string representation of the object | ||
print NotificationSchema.to_json() | ||
|
||
# convert the object into a dict | ||
notification_schema_dict = notification_schema_instance.to_dict() | ||
# create an instance of NotificationSchema from a dict | ||
notification_schema_form_dict = notification_schema.from_dict(notification_schema_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 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
Oops, something went wrong.