iUserIdentity
public protocol iUserIdentity
Interface for user authentication details
-
User identifier (e.g. e-mail)
Declaration
Swift
var identity: String -
Authentication key connected to identity (e.g. password)
Declaration
Swift
var accessKey: String -
Identifies provider used for authentication (e.g. facebook, google). Used in authentication URL path. Must be lower case.
Declaration
Swift
var providerIdentifier: String -
Initializer.
Declaration
Swift
init(identity: String, accessKey: String, providerIdentifier: String)
View on GitHub
iUserIdentity Protocol Reference