com.pubnub.internal.endpoints.push.AddChannelsToPushInterface.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.PNPushAddChannelResult
import com.pubnub.internal.EndpointInterface
interface AddChannelsToPushInterface : EndpointInterface {
val pushType: PNPushType
val channels: List
val deviceId: String
val topic: String?
val environment: PNPushEnvironment
}