| Name |
Type |
Description |
Notes |
| message |
str |
Not Found |
[optional] |
from bsg_api.models.short_urls_link404_response import ShortUrlsLink404Response
# TODO update the JSON string below
json = "{}"
# create an instance of ShortUrlsLink404Response from a JSON string
short_urls_link404_response_instance = ShortUrlsLink404Response.from_json(json)
# print the JSON string representation of the object
print(ShortUrlsLink404Response.to_json())
# convert the object into a dict
short_urls_link404_response_dict = short_urls_link404_response_instance.to_dict()
# create an instance of ShortUrlsLink404Response from a dict
short_urls_link404_response_from_dict = ShortUrlsLink404Response.from_dict(short_urls_link404_response_dict)
[Back to Model list] [Back to API list] [Back to README]