Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.57 KB

UsergroupdelegationResponse.md

File metadata and controls

37 lines (28 loc) · 1.57 KB

UsergroupdelegationResponse

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 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_form_dict = usergroupdelegation_response.from_dict(usergroupdelegation_response_dict)

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