| Name | Type | Description | Notes |
|---|---|---|---|
| full_name | str |
from instana_client.models.edit_user import EditUser
# TODO update the JSON string below
json = "{}"
# create an instance of EditUser from a JSON string
edit_user_instance = EditUser.from_json(json)
# print the JSON string representation of the object
print(EditUser.to_json())
# convert the object into a dict
edit_user_dict = edit_user_instance.to_dict()
# create an instance of EditUser from a dict
edit_user_from_dict = EditUser.from_dict(edit_user_dict)