com.pubnub.api.models.consumer.channel_group.PNChannelGroupsResults.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pubnub-kotlin Show documentation
Show all versions of pubnub-kotlin Show documentation
PubNub is a cross-platform client-to-client (1:1 and 1:many) push service in the cloud, capable of
broadcasting real-time messages to millions of web and mobile clients simultaneously, in less than a quarter
second!
package com.pubnub.api.models.consumer.channel_group
import com.pubnub.api.PubNub
/**
* Result of the [PubNub.addChannelsToChannelGroup] operation.
*/
class PNChannelGroupsAddChannelResult
/**
* Result of the [PubNub.deleteChannelGroup] operation.
*/
class PNChannelGroupsDeleteGroupResult
/**
* Result of the [PubNub.removeChannelsFromChannelGroup] operation.
*/
class PNChannelGroupsRemoveChannelResult
/**
* Result of the [PubNub.listChannelsForChannelGroup] operation.
*
* @property channels List of channels belonging to a channel group.
*/
class PNChannelGroupsAllChannelsResult internal constructor(
val channels: List
)
/**
* Result of the [PubNub.listAllChannelGroups] operation.
*
* @property groups List of all channel groups
*/
class PNChannelGroupsListAllResult internal constructor(
val groups: List
)