Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1023 Bytes

GitEntry.md

File metadata and controls

35 lines (26 loc) · 1023 Bytes

GitEntry

GitEntry represents a git tree

Properties

Name Type Description Notes
mode str [optional]
path str [optional]
sha str [optional]
size int [optional]
type str [optional]
url str [optional]

Example

from clientapi_forgejo.models.git_entry import GitEntry

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

# convert the object into a dict
git_entry_dict = git_entry_instance.to_dict()
# create an instance of GitEntry from a dict
git_entry_from_dict = GitEntry.from_dict(git_entry_dict)

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