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

Latest commit

 

History

History
32 lines (24 loc) · 987 Bytes

File metadata and controls

32 lines (24 loc) · 987 Bytes

PortalRole

Properties

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

Example

from clientapi_atrocore.models.portal_role import PortalRole

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

# convert the object into a dict
portal_role_dict = portal_role_instance.to_dict()
# create an instance of PortalRole from a dict
portal_role_form_dict = portal_role.from_dict(portal_role_dict)

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