thousandeyes-sdk-python/thousandeyes-sdk-credentials/docs/Credentials.md
Jack Browne 92b9a0126c
CP-2126 Refactor HTTP client into shared package (#5)
* CP-2126 Refactor HTTP client into shared package

* CP-2126 Regenerate Python SDK
2024-05-23 11:57:23 +01:00

954 B

Credentials

Properties

Name Type Description Notes
credentials **List[Credential]** [optional]
links SelfLinks [optional]

Example

from thousandeyes_sdk.credentials.models.credentials import Credentials

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

# convert the object into a dict
credentials_dict = credentials_instance.to_dict()
# create an instance of Credentials from a dict
credentials_from_dict = Credentials.from_dict(credentials_dict)

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