All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pubnub.internal.models.server.FetchMessagesEnvelope.kt Maven / Gradle / Ivy

package com.pubnub.internal.models.server

import com.pubnub.internal.models.server.history.ServerFetchMessageItem

data class FetchMessagesEnvelope(
    val channels: Map>,
    val more: FetchMessagesPage?,
)

data class FetchMessagesPage(
    val start: Long? = null,
    val end: Long? = null,
    val max: Int? = null,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy