thousandeyes-sdk-python/credentials/docs/Credential.md

1.0 KiB

Credential

Properties

Name Type Description Notes
id str Unique ID of the credential. [optional]
name str The name of the credential. [optional]
links SelfLinksLinks [optional]
value str The value of the credential that will be encrypted. [optional]

Example

from credentials.models.credential import Credential

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

# convert the object into a dict
credential_dict = credential_instance.to_dict()
# create an instance of Credential from a dict
credential_from_dict = Credential.from_dict(credential_dict)

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