PersonInfo
class PersonInfo
Information about a person
-
The person id of that person
Declaration
Swift
let id: String
-
The displayed name of the person
Declaration
Swift
let displayName: String
-
This person’s labels
Note: Available only when the SDK is working with version 8 or newer of the Unblu server.
Declaration
Swift
let labels: [String]?
-
Returns a Boolean value indicating whether two values are equal.
Equality is the inverse of inequality. For any values
a
andb
,a == b
implies thata != b
isfalse
.Declaration
Swift
static func == (lhs: PersonInfo, rhs: PersonInfo) -> Bool
Parameters
lhs
A value to compare.
rhs
Another value to compare.