A Usergroupdelegation Object
| Name | Type | Description | Notes |
|---|---|---|---|
| pki_usergroupdelegation_id | int | The unique ID of the Usergroupdelegation | |
| fki_usergroup_id | int | The unique ID of the Usergroup | |
| fki_user_id | int | The unique ID of the User | |
| s_user_firstname | str | The first name of the user | |
| s_user_lastname | str | The last name of the user | |
| s_user_loginname | str | The login name of the User. | |
| s_email_address | str | The email address. | [optional] |
| b_user_isactive | bool | Whether the User is active or not | |
| s_usergroup_name_x | str | The Name of the Usergroup in the language of the requester |
from eZmaxApi.models.usergroupdelegation_response import UsergroupdelegationResponse
# TODO update the JSON string below
json = "{}"
# create an instance of UsergroupdelegationResponse from a JSON string
usergroupdelegation_response_instance = UsergroupdelegationResponse.from_json(json)
# print the JSON string representation of the object
print(UsergroupdelegationResponse.to_json())
# convert the object into a dict
usergroupdelegation_response_dict = usergroupdelegation_response_instance.to_dict()
# create an instance of UsergroupdelegationResponse from a dict
usergroupdelegation_response_from_dict = UsergroupdelegationResponse.from_dict(usergroupdelegation_response_dict)