Options
struct Options
-
Extra plugin specific options, only used in special circumstances when the existing options do not provide a way to utilize the underlying auth plugin functionality. See plugin documentation for expected key/values
Declaration
Swift
public let pluginOptions: Any?
-
SignOut the user from all devices. Check the plugin specific definition on what global signOut means.
Declaration
Swift
public let globalSignOut: Bool
-
Provide a presentation anchor if you have signedIn using
signInWithWebUI
. The signOut webUI will be presented in the presentation anchor provided.Declaration
Swift
public let presentationAnchorForWebUI: AuthUIPresentationAnchor?
-
Declaration
Swift
public init(globalSignOut: Bool = false, presentationAnchor: AuthUIPresentationAnchor? = nil, pluginOptions: Any? = nil)
-
-
Declaration
Swift
public static func presentationAnchor(_ anchor: AuthUIPresentationAnchor) -> AuthSignOutRequest.Options