PublicUserProfile

data class PublicUserProfile(val clerkUserId: String, val displayName: String? = null, val avatarUrl: String? = null, val bio: String? = null, val websiteUrl: String? = null, val hideComments: Boolean = false, val createdAt: String = "", val updatedAt: String = "")(source)

Public user profile information, as returned by FeedbackClient.fetchUserProfile.

Constructors

Link copied to clipboard
constructor(clerkUserId: String, displayName: String? = null, avatarUrl: String? = null, bio: String? = null, websiteUrl: String? = null, hideComments: Boolean = false, createdAt: String = "", updatedAt: String = "")

Properties

Link copied to clipboard

Hosted profile picture URL, or null.

Link copied to clipboard
val bio: String?

Biography or tagline, or null.

Link copied to clipboard

Unique user identifier.

Link copied to clipboard

ISO 8601 account creation timestamp.

Link copied to clipboard

User's public display name, or null.

Link copied to clipboard

Whether the user has chosen to hide their public comment history.

Link copied to clipboard

ISO 8601 last update timestamp.

Link copied to clipboard

Personal website or portfolio link, or null.