Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.16 KB

DeployKey.md

File metadata and controls

38 lines (29 loc) · 1.16 KB

DeployKey

DeployKey a deploy key

Properties

Name Type Description Notes
created_at datetime [optional]
fingerprint str [optional]
id int [optional]
key str [optional]
key_id int [optional]
read_only bool [optional]
repository Repository [optional]
title str [optional]
url str [optional]

Example

from clientapi_forgejo.models.deploy_key import DeployKey

# TODO update the JSON string below
json = "{}"
# create an instance of DeployKey from a JSON string
deploy_key_instance = DeployKey.from_json(json)
# print the JSON string representation of the object
print(DeployKey.to_json())

# convert the object into a dict
deploy_key_dict = deploy_key_instance.to_dict()
# create an instance of DeployKey from a dict
deploy_key_from_dict = DeployKey.from_dict(deploy_key_dict)

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