# SharePermission ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **username** | **str** | | ## Example ```python from h2ogpte.rest.models.share_permission import SharePermission # TODO update the JSON string below json = "{}" # create an instance of SharePermission from a JSON string share_permission_instance = SharePermission.from_json(json) # print the JSON string representation of the object print(SharePermission.to_json()) # convert the object into a dict share_permission_dict = share_permission_instance.to_dict() # create an instance of SharePermission from a dict share_permission_from_dict = SharePermission.from_dict(share_permission_dict) ```