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
fromoverseerr.models.create_user_settings_main_requestimportCreateUserSettingsMainRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateUserSettingsMainRequest from a JSON stringcreate_user_settings_main_request_instance=CreateUserSettingsMainRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateUserSettingsMainRequest.to_json())
# convert the object into a dictcreate_user_settings_main_request_dict=create_user_settings_main_request_instance.to_dict()
# create an instance of CreateUserSettingsMainRequest from a dictcreate_user_settings_main_request_from_dict=CreateUserSettingsMainRequest.from_dict(create_user_settings_main_request_dict)