RolePermissionType

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
role_idstr[optional]
permissionsint[optional] [default to 0]

Example

from opcua_webapi.models.role_permission_type import RolePermissionType

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

# convert the object into a dict
role_permission_type_dict = role_permission_type_instance.to_dict()
# create an instance of RolePermissionType from a dict
role_permission_type_from_dict = RolePermissionType.from_dict(role_permission_type_dict)

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