thousandeyes-sdk-python/thousandeyes-sdk-bgp-updates/docs/BgpUpdates.md
api-team-automation[bot] d4b7ca82b7
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#193)
Co-authored-by: API Team <api-team@thousandeyes.com>
2026-09-08 13:15:25 +01:00

31 lines
953 B
Markdown

# BgpUpdates
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**updates** | [**List[BgpUpdate]**](BgpUpdate.md) | | [optional]
**links** | [**PaginationLinks**](PaginationLinks.md) | | [optional]
## Example
```python
from thousandeyes_sdk.bgp_updates.models.bgp_updates import BgpUpdates
# TODO update the JSON string below
json = "{}"
# create an instance of BgpUpdates from a JSON string
bgp_updates_instance = BgpUpdates.from_json(json)
# print the JSON string representation of the object
print(BgpUpdates.to_json())
# convert the object into a dict
bgp_updates_dict = bgp_updates_instance.to_dict()
# create an instance of BgpUpdates from a dict
bgp_updates_from_dict = BgpUpdates.from_dict(bgp_updates_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)