mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 07:55:31 +00:00
946 B
946 B
RuleLinksLinks
An object containing the alert rule links.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| rule | Link | [optional] |
Example
from alerts_api.models.rule_links_links import RuleLinksLinks
# TODO update the JSON string below
json = "{}"
# create an instance of RuleLinksLinks from a JSON string
rule_links_links_instance = RuleLinksLinks.from_json(json)
# print the JSON string representation of the object
print RuleLinksLinks.to_json()
# convert the object into a dict
rule_links_links_dict = rule_links_links_instance.to_dict()
# create an instance of RuleLinksLinks from a dict
rule_links_links_form_dict = rule_links_links.from_dict(rule_links_links_dict)