FirebaseAuth Framework Reference

AuthTokenResult

@available(iOS 13, tvOS 13, macOS 10.15, watchOS 7, *)
@objc(FIRAuthTokenResult)
open class AuthTokenResult : NSObject
extension AuthTokenResult: NSSecureCoding

A data class containing the ID token JWT string and other properties associated with the token including the decoded payload claims.

  • Stores the JWT string of the ID token.

    Declaration

    Swift

    @objc
    open var token: String
  • Stores the ID token’s expiration date.

    Declaration

    Swift

    @objc
    open var expirationDate: Date
  • Stores the ID token’s authentication date.

    This is the date the user was signed in and NOT the date the token was refreshed.

    Declaration

    Swift

    @objc
    open var authDate: Date
  • Stores the date that the ID token was issued.

    This is the date last refreshed and NOT the last authentication date.

    Declaration

    Swift

    @objc
    open var issuedAtDate: Date
  • Stores sign-in provider through which the token was obtained.

    Declaration

    Swift

    @objc
    open var signInProvider: String
  • Stores sign-in second factor through which the token was obtained.

    Declaration

    Swift

    @objc
    open var signInSecondFactor: String
  • Stores the entire payload of claims found on the ID token.

    This includes the standard reserved claims as well as custom claims set by the developer via the Admin SDK.

    Declaration

    Swift

    @objc
    open var claims: [String : Any]
  • Undocumented

    Declaration

    Swift

    public static var supportsSecureCoding: Bool { get }
  • Undocumented

    Declaration

    Swift

    public func encode(with coder: NSCoder)
  • Undocumented

    Declaration

    Swift

    public required convenience init?(coder: NSCoder)