| Name | Type | Description | Notes |
|---|---|---|---|
| secret | str |
from openapi_client.models.secret_data import SecretData
# TODO update the JSON string below
json = "{}"
# create an instance of SecretData from a JSON string
secret_data_instance = SecretData.from_json(json)
# print the JSON string representation of the object
print SecretData.to_json()
# convert the object into a dict
secret_data_dict = secret_data_instance.to_dict()
# create an instance of SecretData from a dict
secret_data_from_dict = SecretData.from_dict(secret_data_dict)