Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 949 Bytes

UserActivity.md

File metadata and controls

31 lines (22 loc) · 949 Bytes

UserActivity

Properties

Name Type Description Notes
id int [optional]
nb_actions int [optional]
last_annot str [optional]

Example

from ecotaxa_py_client.models.user_activity import UserActivity

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

# convert the object into a dict
user_activity_dict = user_activity_instance.to_dict()
# create an instance of UserActivity from a dict
user_activity_form_dict = user_activity.from_dict(user_activity_dict)

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