com.pubnub.internal.endpoints.push.RemoveChannelsFromPushInterface.kt Maven / Gradle / Ivy
package com.pubnub.internal.endpoints.push
import com.pubnub.api.enums.PNPushEnvironment
import com.pubnub.api.enums.PNPushType
import com.pubnub.api.models.consumer.push.PNPushRemoveChannelResult
import com.pubnub.internal.EndpointInterface
interface RemoveChannelsFromPushInterface : EndpointInterface {
val pushType: PNPushType
val channels: List
val deviceId: String
val topic: String?
val environment: PNPushEnvironment
}