Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.18 KB

FileDeleteResponse.md

File metadata and controls

32 lines (23 loc) · 1.18 KB

FileDeleteResponse

FileDeleteResponse contains information about a repo's file that was deleted

Properties

Name Type Description Notes
commit FileCommitResponse [optional]
content object [optional]
verification PayloadCommitVerification [optional]

Example

from clientapi_forgejo.models.file_delete_response import FileDeleteResponse

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

# convert the object into a dict
file_delete_response_dict = file_delete_response_instance.to_dict()
# create an instance of FileDeleteResponse from a dict
file_delete_response_from_dict = FileDeleteResponse.from_dict(file_delete_response_dict)

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