Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 979 Bytes

UpdateUserRequest.md

File metadata and controls

28 lines (20 loc) · 979 Bytes

UpdateUserRequest

Properties

Name Type Description Notes
new_password object Change the password of the user. [optional]

Example

from aim_platform_sdk.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_form_dict = update_user_request.from_dict(update_user_request_dict)

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