FileDeleteResponse contains information about a repo's file that was deleted
Name | Type | Description | Notes |
---|---|---|---|
commit | FileCommitResponse | [optional] | |
content | object | [optional] | |
verification | PayloadCommitVerification | [optional] |
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)