You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It may be one of the following: - The short link already exists This error can occur when passed slug already used by another short link on this domain. Please try another slug. - Short link not found This error can occur when passed link id doesn't exist. Please check short link id.
[optional]
Example
frombsg_api.models.short_urls_link_update422_responseimportShortUrlsLinkUpdate422Response# TODO update the JSON string belowjson="{}"# create an instance of ShortUrlsLinkUpdate422Response from a JSON stringshort_urls_link_update422_response_instance=ShortUrlsLinkUpdate422Response.from_json(json)
# print the JSON string representation of the objectprint(ShortUrlsLinkUpdate422Response.to_json())
# convert the object into a dictshort_urls_link_update422_response_dict=short_urls_link_update422_response_instance.to_dict()
# create an instance of ShortUrlsLinkUpdate422Response from a dictshort_urls_link_update422_response_from_dict=ShortUrlsLinkUpdate422Response.from_dict(short_urls_link_update422_response_dict)