Package-level declarations

Types

Link copied to clipboard
class ColleagueProfile(var firstName: String? = null, var lastName: String? = null, var isEnrolled: Boolean = false)

Represents the profile of a colleague.

Link copied to clipboard
class MemberAddress(var line1: String? = null, var line2: String? = null, var city: String? = null, var state: String? = null, var zipCode: String? = null)

MemberAddress — normalized physical address for a member.

Link copied to clipboard
class MemberProfile(var uniqueId: String? = null, var memberId: String? = null, var messageId: String? = null, var firstName: String? = null, var middleName: String? = null, var lastName: String? = null, var address: MemberAddress? = null, var dob: String? = null, var email: String? = null, var gender: String? = null, var dayPhone: String? = null, var cellPhone: String? = null)

MemberProfile — represents the profile information of a member.