Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.1 KB

File metadata and controls

35 lines (26 loc) · 1.1 KB

EmployeeActivityLog

Properties

Name Type Description Notes
id str
created_at datetime
updated_at datetime
employee_id str
action str
route str
page_name str

Example

from wallet.models.employee_activity_log import EmployeeActivityLog

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

# convert the object into a dict
employee_activity_log_dict = employee_activity_log_instance.to_dict()
# create an instance of EmployeeActivityLog from a dict
employee_activity_log_form_dict = employee_activity_log.from_dict(employee_activity_log_dict)

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