LoginManagerOptions
@available(*, deprecated, message: "Use `LoginManager.Parameters` type instead.")
public struct LoginManagerOptions : OptionSet
Warning
Deprecated. UseLoginManager.Parameters type instead.
Represents options for logging in to the LINE Platform using the LoginManager class.
-
The raw value of an option.
Declaration
Swift
public let rawValue: Int -
Initializes an option from a raw value.
Declaration
Swift
public init(rawValue: Int)Parameters
rawValueThe underlying raw value of an option.
-
Warning
Deprecated. UseLoginManager.Parameters.onlyWebLogininstead.Uses the web authentication flow instead of the LINE app-to-app authentication flow.
Declaration
Swift
@available(*, deprecated, message: "Use `LoginManager.Parameters.onlyWebLogin` instead.") public static let onlyWebLogin: LoginManagerOptions -
Warning
Deprecated. UseLoginManager.Parameters.botPromptStyleinstead.Includes an option to add a LINE Official Account as friend on the consent screen. If
.botPromptNormaland.botPromptAggressiveare set at the same time,.botPromptAggressivewill be used.Declaration
Swift
@available(*, deprecated, message: "Use `LoginManager.Parameters.botPromptStyle` instead.") public static let botPromptNormal: LoginManagerOptions -
Warning
Deprecated. UseLoginManager.Parameters.botPromptStyleinstead.Opens a new screen to add a LINE Official Account as a friend after the user agrees to the permissions on the consent screen. If
.botPromptNormaland.botPromptAggressiveis set at the same time,.botPromptAggressivewill be used.Declaration
Swift
@available(*, deprecated, message: "Use `LoginManager.Parameters.botPromptStyle` instead.") public static let botPromptAggressive: LoginManagerOptions
View on GitHub
LoginManagerOptions Structure Reference