mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
33 lines
1.0 KiB
Markdown
33 lines
1.0 KiB
Markdown
# Credential
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**id** | **str** | Unique ID of the credential. | [optional]
|
|
**name** | **str** | The name of the credential. | [optional]
|
|
**links** | [**SelfLinksLinks**](SelfLinksLinks.md) | | [optional]
|
|
**value** | **str** | The value of the credential that will be encrypted. | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
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]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
|
|
|