Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.14 KB

FilesResponse.md

File metadata and controls

32 lines (23 loc) · 1.14 KB

FilesResponse

FilesResponse contains information about multiple files from a repo

Properties

Name Type Description Notes
commit FileCommitResponse [optional]
files List[ContentsResponse] [optional]
verification PayloadCommitVerification [optional]

Example

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)

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