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
    givenName

    The given name of the user

    familyName

    The family name of the user

    username

    The username of the user

    password

    The password of the user