UnreadChannelFilter

@objc(SBDUnreadChannelFilter)
public enum UnreadChannelFilter : Int
extension UnreadChannelFilter: RawRepresentable, Codable

The enum type to filter my group channels.

Since

3.0.113
  • all

    Shows all my group channels.

    Declaration

    Swift

    case all = 0
  • Shows my group channels that have unread messages.

    Declaration

    Swift

    case unreadMessage = 1
  • 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