| Name |
Type |
Description |
Notes |
| id |
str |
Usage item identifier |
|
| action |
str |
Action performed |
|
| pages_affected |
int |
Links/pages affected |
[optional] |
| created_at |
datetime |
Usage timestamp |
|
| metadata |
Dict[str, object] |
Additional metadata |
[optional] |
from rankvectors.models.usage_history_item import UsageHistoryItem
# TODO update the JSON string below
json = "{}"
# create an instance of UsageHistoryItem from a JSON string
usage_history_item_instance = UsageHistoryItem.from_json(json)
# print the JSON string representation of the object
print(UsageHistoryItem.to_json())
# convert the object into a dict
usage_history_item_dict = usage_history_item_instance.to_dict()
# create an instance of UsageHistoryItem from a dict
usage_history_item_from_dict = UsageHistoryItem.from_dict(usage_history_item_dict)
[Back to Model list] [Back to API list] [Back to README]