FirebaseAuth Framework Reference

FIRActionCodeInfo


@interface FIRActionCodeInfo : NSObject

Manages information regarding action codes.

  • The operation being performed.

    Declaration

    Objective-C

    @property (nonatomic, readonly) FIRActionCodeOperation operation;
  • The email address to which the code was sent. The new email address in the case of ActionCodeOperationRecoverEmail.

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly, nullable) NSString *email;
  • The email that is being recovered in the case of ActionCodeOperationRecoverEmail.

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly, nullable) NSString *previousEmail;
  • please use initWithOperation: instead.

    Declaration

    Objective-C

    - (nonnull instancetype)init;