| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | Name of the secret. | |
| owner | OwnerReference | Owner of the secret. | [optional] |
| access | SecretAccessLevel | [optional] | |
| value | str | Value of the secret. |
from saturn_api.models.secret_create import SecretCreate
# TODO update the JSON string below
json = "{}"
# create an instance of SecretCreate from a JSON string
secret_create_instance = SecretCreate.from_json(json)
# print the JSON string representation of the object
print(SecretCreate.to_json())
# convert the object into a dict
secret_create_dict = secret_create_instance.to_dict()
# create an instance of SecretCreate from a dict
secret_create_from_dict = SecretCreate.from_dict(secret_create_dict)