Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.32 KB

File metadata and controls

33 lines (24 loc) · 1.32 KB

UsergroupResponseCompound

A Usergroup Object

Properties

Name Type Description Notes
pki_usergroup_id int The unique ID of the Usergroup
obj_usergroup_name MultilingualUsergroupName
s_usergroup_name_x str The Name of the Usergroup in the language of the requester [optional]
obj_email EmailRequest [optional]

Example

from eZmaxApi.models.usergroup_response_compound import UsergroupResponseCompound

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

# convert the object into a dict
usergroup_response_compound_dict = usergroup_response_compound_instance.to_dict()
# create an instance of UsergroupResponseCompound from a dict
usergroup_response_compound_from_dict = UsergroupResponseCompound.from_dict(usergroup_response_compound_dict)

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