ChannelHiddenStateFilter
@objc(SBDChannelHiddenStateFilter)
public enum ChannelHiddenStateFilter : Int
extension ChannelHiddenStateFilter: RawRepresentable, Codable
The enum type to filter my group channels with the hidden state.
Since
3.0.122-
Shows the unhidden channels only.
Declaration
Swift
case unhiddenOnly = 0
-
Shows the hidden channels only.
Declaration
Swift
case hiddenOnly = 1
-
Shows the channels will be unhidden automatically when there is a new message in the channel.
Declaration
Swift
case hiddenAllowAutoUnhide = 2
-
Shows the channels will not be unhidden automatically.
Declaration
Swift
case hiddenPreventAutoUnhide = 3
-
Shows all channels.
Declaration
Swift
case all = 4
-
Declaration
Swift
public typealias RawValue = String
-
Declaration
Swift
public var rawValue: String { get }
-
Declaration
Swift
public init(rawValue: String)
-
Default constructor.
Declaration
Swift
public init(from decoder: Decoder) throws
Parameters
decoder
Decoder
instance -
Encodes this object.
Declaration
Swift
public func encode(to encoder: Encoder) throws
Parameters
encoder
Encoder
instance