Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.43 KB

PermissionResponse.md

File metadata and controls

36 lines (27 loc) · 1.43 KB

PermissionResponse

A Permission Object

Properties

Name Type Description Notes
pki_permission_id int The unique ID of the Permission
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
s_company_name_x str The Name of the Company in the language of the requester [optional]

Example

from eZmaxApi.models.permission_response import PermissionResponse

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

# convert the object into a dict
permission_response_dict = permission_response_instance.to_dict()
# create an instance of PermissionResponse from a dict
permission_response_form_dict = permission_response.from_dict(permission_response_dict)

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