Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 1.82 KB

File metadata and controls

43 lines (34 loc) · 1.82 KB

EditLinkRequest

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]
tags List[UUID] Tags [optional]
password str Password [optional]
qrcode BaseLinkRequestQrcode [optional]
utm LinkUtm [optional]
metatag BaseLinkRequestMetatag [optional]
geolinks List[LinkGeolinksInner] Dynamic routing conditions [optional]
delete_at datetime Scheduled deletion date [optional]
expired_at datetime Scheduled expiration date [optional]
expired_url str Expiration URL [optional]
delete_after_expiration bool Whether or not to remove the link after the expiry date [optional] [default to False]

Example

from urlr.models.edit_link_request import EditLinkRequest

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

# convert the object into a dict
edit_link_request_dict = edit_link_request_instance.to_dict()
# create an instance of EditLinkRequest from a dict
edit_link_request_from_dict = EditLinkRequest.from_dict(edit_link_request_dict)

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