Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.68 KB

UsergroupdelegationResponseCompound.md

File metadata and controls

37 lines (28 loc) · 1.68 KB

UsergroupdelegationResponseCompound

A Usergroupdelegation Object

Properties

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]
s_usergroup_name_x str The Name of the Usergroup in the language of the requester

Example

from eZmaxApi.models.usergroupdelegation_response_compound import UsergroupdelegationResponseCompound

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

# convert the object into a dict
usergroupdelegation_response_compound_dict = usergroupdelegation_response_compound_instance.to_dict()
# create an instance of UsergroupdelegationResponseCompound from a dict
usergroupdelegation_response_compound_form_dict = usergroupdelegation_response_compound.from_dict(usergroupdelegation_response_compound_dict)

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