thousandeyes-sdk-python/thousandeyes-sdk-connectors/docs/GenericConnectors.md
2026-02-03 09:52:22 +00:00

1.0 KiB

GenericConnectors

Properties

Name Type Description Notes
items **List[GenericConnector]** [optional]
links SelfLinks [optional]

Example

from thousandeyes_sdk.connectors.models.generic_connectors import GenericConnectors

# TODO update the JSON string below
json = "{}"
# create an instance of GenericConnectors from a JSON string
generic_connectors_instance = GenericConnectors.from_json(json)
# print the JSON string representation of the object
print(GenericConnectors.to_json())

# convert the object into a dict
generic_connectors_dict = generic_connectors_instance.to_dict()
# create an instance of GenericConnectors from a dict
generic_connectors_from_dict = GenericConnectors.from_dict(generic_connectors_dict)

[Back to Model list] [Back to API list] [Back to README]