Skip to content

Files

Latest commit

 

History

History
32 lines (23 loc) · 1.34 KB

UsergroupexternalRequestCompound.md

File metadata and controls

32 lines (23 loc) · 1.34 KB

UsergroupexternalRequestCompound

A Usergroupexternal Object and children

Properties

Name Type Description Notes
pki_usergroupexternal_id int The unique ID of the Usergroupexternal [optional]
s_usergroupexternal_name str The name of the Usergroupexternal
s_usergroupexternal_id str The id of the Usergroupexternal

Example

from eZmaxApi.models.usergroupexternal_request_compound import UsergroupexternalRequestCompound

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

# convert the object into a dict
usergroupexternal_request_compound_dict = usergroupexternal_request_compound_instance.to_dict()
# create an instance of UsergroupexternalRequestCompound from a dict
usergroupexternal_request_compound_from_dict = UsergroupexternalRequestCompound.from_dict(usergroupexternal_request_compound_dict)

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