P2PSession

data class P2PSession(val from: String, val to: String, val latitude: String? = "", val longitude: String? = "", val sessionId: String)

Represents a peer-to-peer chat session.

Constructors

Link copied to clipboard
constructor(from: String, to: String, latitude: String? = "", longitude: String? = "", sessionId: String)

Properties

Link copied to clipboard

The sender of the chat message.

Link copied to clipboard

The latitude value for location data (optional).

Link copied to clipboard

The longitude value for location data (optional).

Link copied to clipboard

The session ID of the chat session.

Link copied to clipboard
val to: String

The recipient of the chat message.