ChatUserModel

data class ChatUserModel(var id: String, val name: String, val image: String, val devices: List<ChatDeviceModel> = mutableListOf(), var unread: Int = 0, val pushActive: Boolean = true, var conversation: List<String> = mutableListOf(), var eventType: ReactiveEvent.TYPE? = null, var path: String? = null) : Parcelable, ReactiveEvent

Constructors

Link copied to clipboard
constructor(source: Parcel)
constructor(id: String, name: String, image: String, devices: List<ChatDeviceModel> = mutableListOf(), unread: Int = 0, pushActive: Boolean = true, conversation: List<String> = mutableListOf(), eventType: ReactiveEvent.TYPE? = null, path: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override var eventType: ReactiveEvent.TYPE?
Link copied to clipboard
var id: String
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override var path: String?
Link copied to clipboard
val pushActive: Boolean = true
Link copied to clipboard
var unread: Int

Functions

Link copied to clipboard
open override fun describeContents(): Int
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
fun equalsContent(other: Any?): Boolean
Link copied to clipboard
open override fun writeToParcel(dest: Parcel, flags: Int)