FilesResponse contains information about multiple files from a repo
Name | Type | Description | Notes |
---|---|---|---|
commit | FileCommitResponse | [optional] | |
files | List[ContentsResponse] | [optional] | |
verification | PayloadCommitVerification | [optional] |
from clientapi_forgejo.models.files_response import FilesResponse
# TODO update the JSON string below
json = "{}"
# create an instance of FilesResponse from a JSON string
files_response_instance = FilesResponse.from_json(json)
# print the JSON string representation of the object
print(FilesResponse.to_json())
# convert the object into a dict
files_response_dict = files_response_instance.to_dict()
# create an instance of FilesResponse from a dict
files_response_from_dict = FilesResponse.from_dict(files_response_dict)