A Usergroup Object and children
Name | Type | Description | Notes |
---|---|---|---|
pki_usergroup_id | int | The unique ID of the Usergroup | [optional] |
obj_email | EmailRequest | [optional] | |
obj_usergroup_name | MultilingualUsergroupName |
from eZmaxApi.models.usergroup_request_compound import UsergroupRequestCompound
# TODO update the JSON string below
json = "{}"
# create an instance of UsergroupRequestCompound from a JSON string
usergroup_request_compound_instance = UsergroupRequestCompound.from_json(json)
# print the JSON string representation of the object
print(UsergroupRequestCompound.to_json())
# convert the object into a dict
usergroup_request_compound_dict = usergroup_request_compound_instance.to_dict()
# create an instance of UsergroupRequestCompound from a dict
usergroup_request_compound_from_dict = UsergroupRequestCompound.from_dict(usergroup_request_compound_dict)