mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 07:55:31 +00:00
1.1 KiB
1.1 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_api.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_form_dict = credential.from_dict(credential_dict)