Name |
Type |
Description |
Notes |
errors |
List[str] |
|
[optional] |
message |
str |
|
[optional] |
url |
str |
|
[optional] |
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]