Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 1.19 KB

File metadata and controls

43 lines (34 loc) · 1.19 KB

Role

Properties

Name Type Description Notes
id str
created_at datetime
updated_at datetime
employees List[WTEmployee]
roles List[WTRole]
employee_id str
merchant_id str
name str
display_name str
is_public bool
order_number float
is_system bool
icons List[str]
category str
admin_page str

Example

from wallet.models.role import Role

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

# convert the object into a dict
role_dict = role_instance.to_dict()
# create an instance of Role from a dict
role_form_dict = role.from_dict(role_dict)

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