# UserPermission ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **id** | **str** | | **name** | **str** | | **description** | **str** | | [optional] ## Example ```python from h2ogpte.rest.models.user_permission import UserPermission # TODO update the JSON string below json = "{}" # create an instance of UserPermission from a JSON string user_permission_instance = UserPermission.from_json(json) # print the JSON string representation of the object print(UserPermission.to_json()) # convert the object into a dict user_permission_dict = user_permission_instance.to_dict() # create an instance of UserPermission from a dict user_permission_from_dict = UserPermission.from_dict(user_permission_dict) ```