Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 941 Bytes

APINotFound.md

File metadata and controls

31 lines (22 loc) · 941 Bytes

APINotFound

Properties

Name Type Description Notes
errors List[str] [optional]
message str [optional]
url str [optional]

Example

from clientapi_forgejo.models.api_not_found import APINotFound

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

# convert the object into a dict
api_not_found_dict = api_not_found_instance.to_dict()
# create an instance of APINotFound from a dict
api_not_found_from_dict = APINotFound.from_dict(api_not_found_dict)

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