PublicUserData

@Serializable
data class PublicUserData(val firstName: String? = null, val lastName: String? = null, val imageUrl: String? = null, val hasImage: Boolean, val identifier: String, val userId: String? = null)

Public information about a user that can be shared with other users.

Constructors

Link copied to clipboard
constructor(firstName: String? = null, lastName: String? = null, imageUrl: String? = null, hasImage: Boolean, identifier: String, userId: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "first_name")
val firstName: String? = null

The user's first name.

Link copied to clipboard
@SerialName(value = "has_image")
val hasImage: Boolean

A boolean indicating whether the user has a profile image.

Link copied to clipboard

The user's identifier (e.g., email address or phone number).

Link copied to clipboard
@SerialName(value = "image_url")
val imageUrl: String? = null

The user's profile image URL.

Link copied to clipboard
@SerialName(value = "last_name")
val lastName: String? = null

The user's last name.

Link copied to clipboard
@SerialName(value = "user_id")
val userId: String? = null

The unique identifier of the user.