DeeplinkControllerInterface
public protocol DeeplinkControllerInterface
-
Set the Deeplink Url
Declaration
Swift
func setDeeplinkUrl(url: String?)
Parameters
url
The deeplink url. It is an String optional.
-
Get the Deeplink Url
Declaration
Swift
func getDeeplinkUrl() -> String?
Return Value
The deeplink url. It is a String optional
-
Get the if the deeplink url is available
Declaration
Swift
func checkIfFlowIsFromDeeplink() -> Bool
Return Value
Boolean representing whether the deeplink url is available
-
Set if the deeplink is handled
Declaration
Swift
func setIsDeeplinkHandled(handled: Bool)
Parameters
handled
The boolean representing whether the deeplink is handled
-
Get if the deeplink is handled
Declaration
Swift
func getIsDeeplinkHandled() -> Bool
Return Value
The boolean representing whether the deeplink is handled
-
Clear the deeplink url from local storage
Declaration
Swift
func clearDeeplinkUrl()