| Name |
Type |
Description |
Notes |
| link_id |
UUID |
Link API ID |
[optional] |
| clicks |
int |
Total number of visits, combining clicks and scans |
[optional] |
| unique_clicks |
int |
Number of unique visitors, combining clicks and scans |
[optional] |
from urlr.models.get_statistics200_response import GetStatistics200Response
# TODO update the JSON string below
json = "{}"
# create an instance of GetStatistics200Response from a JSON string
get_statistics200_response_instance = GetStatistics200Response.from_json(json)
# print the JSON string representation of the object
print(GetStatistics200Response.to_json())
# convert the object into a dict
get_statistics200_response_dict = get_statistics200_response_instance.to_dict()
# create an instance of GetStatistics200Response from a dict
get_statistics200_response_from_dict = GetStatistics200Response.from_dict(get_statistics200_response_dict)
[Back to Model list] [Back to API list] [Back to README]