Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1013 Bytes

File metadata and controls

34 lines (25 loc) · 1013 Bytes

UserResult

Properties

Name Type Description Notes
email str
full_name str
group_count int [optional]
id str
last_logged_in int [optional]
tfa_enabled bool [optional]

Example

from instana_client.models.user_result import UserResult

# TODO update the JSON string below
json = "{}"
# create an instance of UserResult from a JSON string
user_result_instance = UserResult.from_json(json)
# print the JSON string representation of the object
print(UserResult.to_json())

# convert the object into a dict
user_result_dict = user_result_instance.to_dict()
# create an instance of UserResult from a dict
user_result_from_dict = UserResult.from_dict(user_result_dict)

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