| Name | Type | Description | Notes |
|---|---|---|---|
| url | str | URL to shorten | |
| 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] |
| team_id | UUID | Workspace API ID |
from urlr.models.create_link_request import CreateLinkRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CreateLinkRequest from a JSON string
create_link_request_instance = CreateLinkRequest.from_json(json)
# print the JSON string representation of the object
print(CreateLinkRequest.to_json())
# convert the object into a dict
create_link_request_dict = create_link_request_instance.to_dict()
# create an instance of CreateLinkRequest from a dict
create_link_request_from_dict = CreateLinkRequest.from_dict(create_link_request_dict)