BasePubSubResult

data class BasePubSubResult(val channel: String, val subscription: String?, val timetoken: Long?, val userMetadata: JsonElement?, val publisher: String?) : PubSubResult

Constructors

Link copied to clipboard
constructor(channel: String, subscription: String?, timetoken: Long?, userMetadata: JsonElement?, publisher: String?)

Properties

Link copied to clipboard
open override val channel: String

The channel a PubNub API operation is related to.

Link copied to clipboard
open override val publisher: String?

The publisher of the PubNub API operation in question.

Link copied to clipboard
open override val subscription: String?

The subscriptions a PubNub API operation is related to.

Link copied to clipboard
open override val timetoken: Long?

Timetoken of the PubNub API operation in question.

Link copied to clipboard
open override val userMetadata: JsonElement?

User metadata if any.