mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 07:55:31 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com>
31 lines
957 B
Markdown
31 lines
957 B
Markdown
# AlertEmbedded
|
|
|
|
Container for embedded resources in alert responses (HATEOAS).
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**asn** | [**Asn**](Asn.md) | | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from thousandeyes_sdk.alerts.models.alert_embedded import AlertEmbedded
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of AlertEmbedded from a JSON string
|
|
alert_embedded_instance = AlertEmbedded.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print(AlertEmbedded.to_json())
|
|
|
|
# convert the object into a dict
|
|
alert_embedded_dict = alert_embedded_instance.to_dict()
|
|
# create an instance of AlertEmbedded from a dict
|
|
alert_embedded_from_dict = AlertEmbedded.from_dict(alert_embedded_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)
|
|
|
|
|