Secret represents a secret
Name | Type | Description | Notes |
---|---|---|---|
created_at | datetime | [optional] | |
name | str | the secret's name | [optional] |
from clientapi_forgejo.models.secret import Secret
# TODO update the JSON string below
json = "{}"
# create an instance of Secret from a JSON string
secret_instance = Secret.from_json(json)
# print the JSON string representation of the object
print(Secret.to_json())
# convert the object into a dict
secret_dict = secret_instance.to_dict()
# create an instance of Secret from a dict
secret_from_dict = Secret.from_dict(secret_dict)