thousandeyes-sdk-python/agents_api/docs/AlertEmail.md
2023-12-11 09:29:15 +00:00

967 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_api.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_form_dict = alert_email.from_dict(alert_email_dict)

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