Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.48 KB

ModulesectionResponseCompound.md

File metadata and controls

34 lines (25 loc) · 1.48 KB

ModulesectionResponseCompound

A Modulesection Object

Properties

Name Type Description Notes
pki_modulesection_id int The unique ID of the Modulesection
fki_module_id int The unique ID of the Module
s_modulesection_internalname str The Internal name of the Module section.
s_modulesection_name_x str The Name of the Modulesection in the language of the requester
a_obj_permission List[PermissionResponseCompound] [optional]

Example

from eZmaxApi.models.modulesection_response_compound import ModulesectionResponseCompound

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

# convert the object into a dict
modulesection_response_compound_dict = modulesection_response_compound_instance.to_dict()
# create an instance of ModulesectionResponseCompound from a dict
modulesection_response_compound_form_dict = modulesection_response_compound.from_dict(modulesection_response_compound_dict)

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