Name | Type | Description | Notes |
---|---|---|---|
type | UserActivityType | [optional] | |
inserted_date | str | Inserted Timestamp | [optional] |
user_id | str | User who added document | [optional] |
document | Document | [optional] | |
changes | Dict[str, UserActivityChanges] | [optional] |
from formkiq_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_from_dict = UserActivity.from_dict(user_activity_dict)