StatusDetails
public struct StatusDetails : Codable, Equatable
Object that contains details about the status of the authentication process.
-
Indicates whether the credential is accepted by the target data source.
Declaration
Swift
public var authenticated: Bool? -
If
authenticatedisfalse, a message describes why the authentication was unsuccessful.Declaration
Swift
public var errorMessage: String? -
Initialize a
StatusDetailswith member variables.Declaration
Swift
public init( authenticated: Bool? = nil, errorMessage: String? = nil )Parameters
authenticatedIndicates whether the credential is accepted by the target data source.
errorMessageIf
authenticatedisfalse, a message describes why the authentication was unsuccessful.Return Value
An initialized
StatusDetails.
View on GitHub
StatusDetails Structure Reference