| Name |
Type |
Description |
Notes |
| id |
UUID |
Link API ID |
[optional] |
| url |
str |
Original URL |
[optional] |
| workspace_id |
UUID |
Workspace API ID |
[optional] |
| folder_id |
UUID |
Folder API ID |
[optional] |
| user |
str |
User |
[optional] |
| domain |
str |
Domain |
[optional] |
| code |
str |
Short code |
[optional] |
| label |
str |
Label |
[optional] |
| password |
str |
Password: "**********" means a password exists; null means no password. |
[optional] |
| created_at |
datetime |
Creation date |
[optional] |
| updated_at |
datetime |
Modification date |
[optional] |
| delete_at |
datetime |
Scheduled deletion date |
[optional] |
| expired_at |
datetime |
Scheduled expiration date |
[optional] |
| expired_url |
str |
The URL to which users will be redirected after the link has expired |
[optional] |
| expired_title |
str |
The title displayed on the expiration page |
[optional] |
| expired_text |
str |
The text displayed on the expiration page |
[optional] |
| delete_after_expiration |
bool |
Whether the link should be deleted once it has expired |
[optional] [default to False] |
| tags |
List[LinkTagsInner] |
Tags |
[optional] |
| qrcode |
LinkQrcode |
|
[optional] |
| utm |
LinkUtm |
|
[optional] |
| metatag |
LinkMetatag |
|
[optional] |
| geolinks |
List[LinkGeolinksInner] |
Dynamic routing conditions |
[optional] |
from urlr.models.link import Link
# TODO update the JSON string below
json = "{}"
# create an instance of Link from a JSON string
link_instance = Link.from_json(json)
# print the JSON string representation of the object
print(Link.to_json())
# convert the object into a dict
link_dict = link_instance.to_dict()
# create an instance of Link from a dict
link_from_dict = Link.from_dict(link_dict)
[Back to Model list] [Back to API list] [Back to README]