mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-09-18 07:53:55 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com>
953 B
953 B
BgpUpdates
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| updates | **List[BgpUpdate]** | [optional] | |
| links | PaginationLinks | [optional] |
Example
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)