You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Partial custom data object to update for the given user ID.
Example
frompy_logto.models.update_user_custom_data_requestimportUpdateUserCustomDataRequest# TODO update the JSON string belowjson="{}"# create an instance of UpdateUserCustomDataRequest from a JSON stringupdate_user_custom_data_request_instance=UpdateUserCustomDataRequest.from_json(json)
# print the JSON string representation of the objectprint(UpdateUserCustomDataRequest.to_json())
# convert the object into a dictupdate_user_custom_data_request_dict=update_user_custom_data_request_instance.to_dict()
# create an instance of UpdateUserCustomDataRequest from a dictupdate_user_custom_data_request_from_dict=UpdateUserCustomDataRequest.from_dict(update_user_custom_data_request_dict)