Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.23 KB

File metadata and controls

40 lines (31 loc) · 1.23 KB

RoleAuditLog

Properties

Name Type Description Notes
id str
created_at object
updated_at object
role_name object
action object
merchant_id str
action_by_employee_id str
action_by_employee_name object
action_on_employee_id str
action_on_employee_name object
display_name object
is_system object

Example

from wallet.models.role_audit_log import RoleAuditLog

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

# convert the object into a dict
role_audit_log_dict = role_audit_log_instance.to_dict()
# create an instance of RoleAuditLog from a dict
role_audit_log_form_dict = role_audit_log.from_dict(role_audit_log_dict)

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