You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
**name** | **str** | Autonomous system name. | [optional]
11
+
**type** | **str** | Resource type. | [optional]
12
+
13
+
## Example
14
+
15
+
```python
16
+
from thousandeyes_sdk.alerts.models.asn import Asn
17
+
18
+
#TODO update the JSON string below
19
+
json ="{}"
20
+
# create an instance of Asn from a JSON string
21
+
asn_instance = Asn.from_json(json)
22
+
# print the JSON string representation of the object
23
+
print(Asn.to_json())
24
+
25
+
# convert the object into a dict
26
+
asn_dict = asn_instance.to_dict()
27
+
# create an instance of Asn from a dict
28
+
asn_from_dict = Asn.from_dict(asn_dict)
29
+
```
30
+
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
0 commit comments