Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.04 KB

FileLinksResponse.md

File metadata and controls

32 lines (23 loc) · 1.04 KB

FileLinksResponse

FileLinksResponse contains the links for a repo's file

Properties

Name Type Description Notes
git str [optional]
html str [optional]
var_self str [optional]

Example

from clientapi_forgejo.models.file_links_response import FileLinksResponse

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

# convert the object into a dict
file_links_response_dict = file_links_response_instance.to_dict()
# create an instance of FileLinksResponse from a dict
file_links_response_from_dict = FileLinksResponse.from_dict(file_links_response_dict)

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