SignInCodeRequiredState

@objcMembers
public class SignInCodeRequiredState : SignInBaseState

An object of this type is created when a user is required to supply a verification code to continue a sign in flow.

  • Requests the server to resend the verification code to the user.

    Declaration

    Swift

    public func resendCode(delegate: SignInResendCodeDelegate)

    Parameters

    delegate

    Delegate that receives callbacks for the operation.

  • Submits the code to the server for verification.

    Declaration

    Swift

    public func submitCode(code: String, delegate: SignInVerifyCodeDelegate)

    Parameters

    code

    Verification code that the user supplies.

    delegate

    Delegate that receives callbacks for the operation.