Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

GetStatisticsRequest

Properties

Name Type Description Notes
link_id UUID Link API ID
var_from datetime Get statistics from this date [optional]
to datetime Get statistics until this date [optional]

Example

from urlr.models.get_statistics_request import GetStatisticsRequest

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

# convert the object into a dict
get_statistics_request_dict = get_statistics_request_instance.to_dict()
# create an instance of GetStatisticsRequest from a dict
get_statistics_request_from_dict = GetStatisticsRequest.from_dict(get_statistics_request_dict)

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