AuthResetPasswordStep
public enum AuthResetPasswordStep
extension AuthResetPasswordStep: Equatable
The next step in Auth.resetPassword api
-
Next step is to confirm the password with a code.
Invoke Auth.confirmResetPassword with new password and the confirmation code for the user for which
resetPassword
was invoked.AuthCodeDeliveryDetails
describes where the confirmation code was sent andAdditionalInfo
will provide more details if present.Declaration
Swift
case confirmResetPasswordWithCode(AuthCodeDeliveryDetails, AdditionalInfo?)
-
Reset password complete, there are no remaining steps
Declaration
Swift
case done