You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The total number of items matching the specified criteria
[optional]
Example
frombsg_api.models.short_urls_clicks200_responseimportShortUrlsClicks200Response# TODO update the JSON string belowjson="{}"# create an instance of ShortUrlsClicks200Response from a JSON stringshort_urls_clicks200_response_instance=ShortUrlsClicks200Response.from_json(json)
# print the JSON string representation of the objectprint(ShortUrlsClicks200Response.to_json())
# convert the object into a dictshort_urls_clicks200_response_dict=short_urls_clicks200_response_instance.to_dict()
# create an instance of ShortUrlsClicks200Response from a dictshort_urls_clicks200_response_from_dict=ShortUrlsClicks200Response.from_dict(short_urls_clicks200_response_dict)