PreferencesUserProfile

@Serializable
data class PreferencesUserProfile(val id: String = String(), val userName: String = String(), val profilePictureUriString: String? = null)

Represents a user profile.

This data class is used for storing information about a user's profile.

Constructors

Link copied to clipboard
constructor(id: String = String(), userName: String = String(), profilePictureUriString: String? = null)

Properties

Link copied to clipboard
val id: String

The unique identifier for the profile. Defaults to empty if not provided.

Link copied to clipboard

The URI string for the user's profile picture, if available. Defaults to null if not provided.

Link copied to clipboard

The name of the user. Defaults to empty if not provided.