mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
964 B
964 B
AlertEmail
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| message | str | Message used for email notification. | [optional] |
| recipients | List[str] | List of recipients emails that will be notified. | [optional] |
Example
from agents.models.alert_email import AlertEmail
# TODO update the JSON string below
json = "{}"
# create an instance of AlertEmail from a JSON string
alert_email_instance = AlertEmail.from_json(json)
# print the JSON string representation of the object
print(AlertEmail.to_json())
# convert the object into a dict
alert_email_dict = alert_email_instance.to_dict()
# create an instance of AlertEmail from a dict
alert_email_from_dict = AlertEmail.from_dict(alert_email_dict)