GroupChannelListOrder
@objc(SBDGroupChannelListOrder)
public enum GroupChannelListOrder : Int
extension GroupChannelListOrder: RawRepresentable, Codable
The order type for GroupChannelListQuery
.
-
Chronological order for group channel.
Declaration
Swift
case chronological = 0
-
Lastest last message order for group channel.
Declaration
Swift
case latestLastMessage = 1
-
Alphabetical name order for group channel.
Declaration
Swift
case channelNameAlphabetical = 2
-
Alphabetical value order of a selected key in meta data for group channel.
Declaration
Swift
case channelMetaDataValueAlphabetical = 3
-
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