SPAccount
public class SPAccount : NSObject
Data object representing an users account
-
The given name of the user
Declaration
Swift
public var givenName: String -
The family name of the user
Declaration
Swift
public var familyName: String -
The username of the user
Declaration
Swift
public var username: String -
The password of the user
Declaration
Swift
public var password: String -
Initializer of SPAccount
Declaration
Swift
public init(givenName: String, familyName: String, username: String, password: String)Parameters
givenNameThe given name of the user
familyNameThe family name of the user
usernameThe username of the user
passwordThe password of the user
SPAccount Class Reference