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
fromokta.models.authentication_method_objectimportAuthenticationMethodObject# TODO update the JSON string belowjson="{}"# create an instance of AuthenticationMethodObject from a JSON stringauthentication_method_object_instance=AuthenticationMethodObject.from_json(json)
# print the JSON string representation of the objectprint(AuthenticationMethodObject.to_json())
# convert the object into a dictauthentication_method_object_dict=authentication_method_object_instance.to_dict()
# create an instance of AuthenticationMethodObject from a dictauthentication_method_object_from_dict=AuthenticationMethodObject.from_dict(authentication_method_object_dict)