Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.41 KB

ModuleResponse.md

File metadata and controls

35 lines (26 loc) · 1.41 KB

ModuleResponse

A Module Object

Properties

Name Type Description Notes
pki_module_id int The unique ID of the Module
fki_modulegroup_id int The unique ID of the Modulegroup
e_module_internalname str The Internal name of the Module. This is theoretically an enum field but there are so many possibles values we decided not to list them all.
s_module_name_x str The Name of the Module in the language of the requester
b_module_registered bool Whether the Module is registered or not
b_module_registeredapi bool Whether the Module is registered or not for api use

Example

from eZmaxApi.models.module_response import ModuleResponse

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

# convert the object into a dict
module_response_dict = module_response_instance.to_dict()
# create an instance of ModuleResponse from a dict
module_response_form_dict = module_response.from_dict(module_response_dict)

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