PublicUserProfileResult

data class PublicUserProfileResult(val profile: PublicUserProfile, val apps: List<PublicAppSummary> = emptyList(), val recentComments: List<UserProfileComment> = emptyList(), val hideComments: Boolean = false)(source)

Combined public profile result returned by FeedbackClient.fetchUserProfile.

Constructors

Link copied to clipboard
constructor(profile: PublicUserProfile, apps: List<PublicAppSummary> = emptyList(), recentComments: List<UserProfileComment> = emptyList(), hideComments: Boolean = false)

Properties

Link copied to clipboard

List of public apps associated with the user (PublicAppSummary).

Link copied to clipboard

Whether comment history is obscured due to user privacy settings.

Link copied to clipboard

Core user profile metadata (PublicUserProfile).

Link copied to clipboard

Recent comments posted by the user across public requests (UserProfileComment).