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] |
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] |
expired_at | datetime | Expiration date | [optional] |
expired_url | str | Expiration URL | [optional] |
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)