Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.23 KB

File metadata and controls

32 lines (23 loc) · 1.23 KB

UpdateUserRequest

Properties

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]

Example

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)

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