thousandeyes-sdk-python/thousandeyes-sdk-credentials/docs/Credential.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

33 lines
1.1 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** | [**SelfLinks**](SelfLinks.md) | | [optional]
**value** | **str** | The value of the credential that will be encrypted. | [optional]
## Example
```python
from thousandeyes_sdk.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)