Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 877 Bytes

Secret.md

File metadata and controls

31 lines (22 loc) · 877 Bytes

Secret

Secret represents a secret

Properties

Name Type Description Notes
created_at datetime [optional]
name str the secret's name [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]