ActionCodeURL
@objc(FIRActionCodeURL)
open class ActionCodeURL : NSObject, @unchecked SendableThis class will allow developers to easily extract information about out of band links.
-
Returns the API key from the link. nil, if not provided.
Declaration
Swift
@objc(APIKey) public let apiKey: String? -
Returns the mode of oob action.
The property will be of
ActionCodeOperationtype. It will return.unknownif no oob action is provided.Declaration
Swift
@objc public let operation: ActionCodeOperation -
Returns the email action code from the link. nil, if not provided.
Declaration
Swift
@objc public let code: String? -
Returns the continue URL from the link. nil, if not provided.
Declaration
Swift
@objc public let continueURL: URL? -
Returns the language code from the link. nil, if not provided.
Declaration
Swift
@objc public let languageCode: String? -
Construct an
ActionCodeURLfrom an out of band link (e.g. email link).Declaration
Swift
@objc(actionCodeURLWithLink:) public init?(link: String)Parameters
linkThe oob link string used to construct the action code URL.
Return Value
The ActionCodeURL object constructed based on the oob link provided.