Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.28 KB

ModulegroupResponseCompound.md

File metadata and controls

32 lines (23 loc) · 1.28 KB

ModulegroupResponseCompound

A Modulegroup Object

Properties

Name Type Description Notes
pki_modulegroup_id int The unique ID of the Modulegroup
s_modulegroup_name_x str The name of the Modulegroup in the language of the requester
a_obj_module List[ModuleResponseCompound] [optional]

Example

from eZmaxApi.models.modulegroup_response_compound import ModulegroupResponseCompound

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

# convert the object into a dict
modulegroup_response_compound_dict = modulegroup_response_compound_instance.to_dict()
# create an instance of ModulegroupResponseCompound from a dict
modulegroup_response_compound_form_dict = modulegroup_response_compound.from_dict(modulegroup_response_compound_dict)

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