Name | Type | Description | Notes |
---|---|---|---|
links | SelfLinks | Links for easy navigation. |
from pfruck_contabo.models.update_role_response import UpdateRoleResponse
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateRoleResponse from a JSON string
update_role_response_instance = UpdateRoleResponse.from_json(json)
# print the JSON string representation of the object
print(UpdateRoleResponse.to_json())
# convert the object into a dict
update_role_response_dict = update_role_response_instance.to_dict()
# create an instance of UpdateRoleResponse from a dict
update_role_response_from_dict = UpdateRoleResponse.from_dict(update_role_response_dict)