Skip to content

Latest commit

 

History

History
46 lines (37 loc) · 2.14 KB

GetLink200Response.md

File metadata and controls

46 lines (37 loc) · 2.14 KB

GetLink200Response

Properties

Name Type Description Notes
id str Link API ID [optional]
url str Original URL [optional]
team_id str Team API ID [optional]
folder_id str Folder API ID [optional]
domain str Domain [optional]
code str Short code [optional]
label str Label [optional]
tags List[GetLink200ResponseTagsInner] Tags [optional]
qrcode GetLink200ResponseQrcode [optional]
utm GetLink200ResponseUtm [optional]
metatag GetLink200ResponseMetatag [optional]
geolinks List[GetLink200ResponseGeolinksInner] Geographical targeting links [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 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.get_link200_response import GetLink200Response

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

# convert the object into a dict
get_link200_response_dict = get_link200_response_instance.to_dict()
# create an instance of GetLink200Response from a dict
get_link200_response_from_dict = GetLink200Response.from_dict(get_link200_response_dict)

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