Person

public struct Person

Person contents.

  • id

    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.0

    Declaration

    Swift

    public var nickName: String?
  • The nick first name of person

    Since

    1.4.0

    Declaration

    Swift

    public var firstName: String?
  • The nick last name of person

    Since

    1.4.0

    Declaration

    Swift

    public var lastName: String?
  • The nick orgId of person

    Since

    1.4.0

    Declaration

    Swift

    public var orgId: String?
  • The nick type of person, default is person

    Since

    1.4.0

    Declaration

    Swift

    public var type: 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)