Response body for GET /secrets
| Name | Type | Description | Notes |
|---|---|---|---|
| secrets | List[SecretMetadataResponse] |
from hotdata.models.list_secrets_response import ListSecretsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ListSecretsResponse from a JSON string
list_secrets_response_instance = ListSecretsResponse.from_json(json)
# print the JSON string representation of the object
print(ListSecretsResponse.to_json())
# convert the object into a dict
list_secrets_response_dict = list_secrets_response_instance.to_dict()
# create an instance of ListSecretsResponse from a dict
list_secrets_response_from_dict = ListSecretsResponse.from_dict(list_secrets_response_dict)