Person
public struct Person
extension Person: Mappable
Person contents.
-
The id of this person.
Declaration
Swift
public var id: String? -
The emails of this person.
Declaration
Swift
public var emails: [EmailAddress]? -
The display name of this person.
Declaration
Swift
public var displayName: String? -
The URL of this person’s avatar.
Declaration
Swift
public var avatar: String? -
The timestamp that this person being created.
Declaration
Swift
public var created: Date? -
The nick name of person
Since
1.4.0Declaration
Swift
public var nickName: String? -
The nick first name of person
Since
1.4.0Declaration
Swift
public var firstName: String? -
The nick last name of person
Since
1.4.0Declaration
Swift
public var lastName: String? -
The nick orgId of person
Since
1.4.0Declaration
Swift
public var orgId: String? -
The nick type of person, default is “person”
Since
1.4.0Declaration
Swift
public var type: String? -
The date and time of the person’s last activity within Webex
Since
2.3.0Declaration
Swift
public var lastActivity: Date? -
The current presence status of the person
Since
2.3.0Declaration
Swift
public var status: String? -
Person constructor.
Note
for internal use only.Declaration
Swift
public init?(map: Map) -
Person mapping from JSON.
Note
for internal use only.Declaration
Swift
public mutating func mapping(map: Map)
View on GitHub
Person Structure Reference