thousandeyes-sdk-python/thousandeyes-sdk-alerts/docs/Asn.md
Ting 99f801db6d
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#113)
Co-authored-by: API Team <api-team@thousandeyes.com>
2025-09-16 14:58:43 +01:00

33 lines
941 B
Markdown

# Asn
Autonomous System Number (ASN) information for network outage alerts.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | ASN identifier. | [optional]
**name** | **str** | Autonomous system name. | [optional]
**type** | **str** | Resource type. | [optional]
## Example
```python
from thousandeyes_sdk.alerts.models.asn import Asn
# TODO update the JSON string below
json = "{}"
# create an instance of Asn from a JSON string
asn_instance = Asn.from_json(json)
# print the JSON string representation of the object
print(Asn.to_json())
# convert the object into a dict
asn_dict = asn_instance.to_dict()
# create an instance of Asn from a dict
asn_from_dict = Asn.from_dict(asn_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)