Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 805 Bytes

File metadata and controls

29 lines (20 loc) · 805 Bytes

EditUser

Properties

Name Type Description Notes
full_name str

Example

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)

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