A Permission Object
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 |
from eZmaxApi.models.permission_request import PermissionRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PermissionRequest from a JSON string
permission_request_instance = PermissionRequest.from_json(json)
# print the JSON string representation of the object
print(PermissionRequest.to_json())
# convert the object into a dict
permission_request_dict = permission_request_instance.to_dict()
# create an instance of PermissionRequest from a dict
permission_request_from_dict = PermissionRequest.from_dict(permission_request_dict)