mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-08-04 08:56:50 +00:00
1.0 KiB
1.0 KiB
DomainEventGrouping
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| fqdn | str | Fully qualified domain name (for domain events). | [optional] [readonly] |
Example
from thousandeyes_sdk.event_detection.models.domain_event_grouping import DomainEventGrouping
# TODO update the JSON string below
json = "{}"
# create an instance of DomainEventGrouping from a JSON string
domain_event_grouping_instance = DomainEventGrouping.from_json(json)
# print the JSON string representation of the object
print(DomainEventGrouping.to_json())
# convert the object into a dict
domain_event_grouping_dict = domain_event_grouping_instance.to_dict()
# create an instance of DomainEventGrouping from a dict
domain_event_grouping_from_dict = DomainEventGrouping.from_dict(domain_event_grouping_dict)