A Modulesection Object
| 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] |
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_from_dict = ModulesectionResponseCompound.from_dict(modulesection_response_compound_dict)