Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 2.04 KB

File metadata and controls

45 lines (36 loc) · 2.04 KB

LinkBaseRequest

Properties

Name Type Description Notes
url str URL to shorten [optional]
folder_id UUID Folder API ID [optional]
domain str Domain [optional]
code str Custom short code [optional]
label str Label [optional]
password str Password [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[UUID] Tags [optional]
qrcode LinkBaseRequestQrcode [optional]
utm LinkUtm [optional]
metatag LinkBaseRequestMetatag [optional]
geolinks List[LinkGeolinksInner] Dynamic routing conditions [optional]

Example

from urlr.models.link_base_request import LinkBaseRequest

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

# convert the object into a dict
link_base_request_dict = link_base_request_instance.to_dict()
# create an instance of LinkBaseRequest from a dict
link_base_request_from_dict = LinkBaseRequest.from_dict(link_base_request_dict)

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