mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 07:55:31 +00:00
1.2 KiB
1.2 KiB
UserEventAllOfResourcesInner
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| type | str | Type of resource affected. Can be “testName”, “reportTitle”, “userDisplayName”, “alertRuleName”, etc. | [optional] |
| name | str | Name of the affected resource. | [optional] |
Example
from admin_api.models.user_event_all_of_resources_inner import UserEventAllOfResourcesInner
# TODO update the JSON string below
json = "{}"
# create an instance of UserEventAllOfResourcesInner from a JSON string
user_event_all_of_resources_inner_instance = UserEventAllOfResourcesInner.from_json(json)
# print the JSON string representation of the object
print UserEventAllOfResourcesInner.to_json()
# convert the object into a dict
user_event_all_of_resources_inner_dict = user_event_all_of_resources_inner_instance.to_dict()
# create an instance of UserEventAllOfResourcesInner from a dict
user_event_all_of_resources_inner_form_dict = user_event_all_of_resources_inner.from_dict(user_event_all_of_resources_inner_dict)