Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.47 KB

PermissionRequestCompound.md

File metadata and controls

35 lines (26 loc) · 1.47 KB

PermissionRequestCompound

A Permission Object and children to create a complete structure

Properties

Name Type Description Notes
pki_permission_id int The unique ID of the Permission [optional]
fki_user_id int The unique ID of the User [optional]
fki_apikey_id int The unique ID of the Apikey [optional]
fki_usergroup_id int The unique ID of the Usergroup [optional]
fki_company_id int The unique ID of the Company [optional]
fki_modulesection_id int The unique ID of the Modulesection

Example

from eZmaxApi.models.permission_request_compound import PermissionRequestCompound

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

# convert the object into a dict
permission_request_compound_dict = permission_request_compound_instance.to_dict()
# create an instance of PermissionRequestCompound from a dict
permission_request_compound_from_dict = PermissionRequestCompound.from_dict(permission_request_compound_dict)

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