FileLinksResponse contains the links for a repo's file
Name | Type | Description | Notes |
---|---|---|---|
git | str | [optional] | |
html | str | [optional] | |
var_self | str | [optional] |
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)