A Usergroup Object
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 import UsergroupRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UsergroupRequest from a JSON string
usergroup_request_instance = UsergroupRequest.from_json(json)
# print the JSON string representation of the object
print(UsergroupRequest.to_json())
# convert the object into a dict
usergroup_request_dict = usergroup_request_instance.to_dict()
# create an instance of UsergroupRequest from a dict
usergroup_request_from_dict = UsergroupRequest.from_dict(usergroup_request_dict)