| Name | Type | Description | Notes |
|---|---|---|---|
| credentials | UserCredentials | [optional] | |
| profile | UserProfile | [optional] | |
| realm_id | str | The ID of the realm in which the user is residing. See Realms. | [optional] |
| type | UpdateUserRequestType | [optional] |
from okta.models.update_user_request import UpdateUserRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateUserRequest from a JSON string
update_user_request_instance = UpdateUserRequest.from_json(json)
# print the JSON string representation of the object
print(UpdateUserRequest.to_json())
# convert the object into a dict
update_user_request_dict = update_user_request_instance.to_dict()
# create an instance of UpdateUserRequest from a dict
update_user_request_from_dict = UpdateUserRequest.from_dict(update_user_request_dict)