Refy User Impl

@Serializable
data class RefyUserImpl(val id: String, val name: String, val surname: String, val email: String, val profilePic: String, val tagName: String) : RefyUser

The RefyUserImpl class is the implementation of the RefyUser interface

Author

N7ghtm4r3 - Tecknobit

See also

Constructors

Link copied to clipboard
constructor(id: String, name: String, surname: String, email: String, profilePic: String, tagName: String)

Properties

Link copied to clipboard
open override val email: String

The email of the user

Link copied to clipboard
open override val id: String

The identifier of the user

Link copied to clipboard
open override val name: String

The name of the user

Link copied to clipboard
@SerialName(value = "profile_pic" )
open override val profilePic: String

The profile pic of the user

Link copied to clipboard
open override val surname: String

The surname of the user

Link copied to clipboard
@SerialName(value = "tag_name" )
open override val tagName: String

The tagName of the user

Functions

Link copied to clipboard
open fun completeName(): String

Method used to assemble the complete name of the current user