Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Latest commit

 

History

History
35 lines (27 loc) · 1.03 KB

File metadata and controls

35 lines (27 loc) · 1.03 KB

Role

Properties

Name Type Description Notes
id str [optional]
deleted bool [optional]
name str
assignment_permission str [optional]
portal_permission str [optional]
data_privacy_permission str [optional]
data object [optional]
field_data object [optional]

Example

from clientapi_atrocore.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]