ARTChannelDetails

Objective-C

@interface ARTChannelDetails : NSObject

Swift

class ARTChannelDetails : NSObject

Contains the details of a ARTRestChannel or ARTRealtimeChannel object such as its ID and ARTChannelStatus.

  • The identifier of the channel.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSString *_Nonnull channelId;

    Swift

    var channelId: String { get }
  • A ARTChannelStatus object.

    Declaration

    Objective-C

    @property (nonatomic, readonly) ARTChannelStatus *_Nonnull status;

    Swift

    var status: ARTChannelStatus { get }