thousandeyes-sdk-python/thousandeyes-sdk-agents/docs/AlertEmail.md
Jack Browne 92b9a0126c
CP-2126 Refactor HTTP client into shared package (#5)
* CP-2126 Refactor HTTP client into shared package

* CP-2126 Regenerate Python SDK
2024-05-23 11:57:23 +01:00

981 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 thousandeyes_sdk.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)

[Back to Model list] [Back to API list] [Back to README]