TotalScheduledMessageCountParams

public final class TotalScheduledMessageCountParams: NSObject

An object that contains a set of options to get scheduled messages count.

Since

4.0.0
  • Channel URL which has this message.

    Since

    4.0.0

    Declaration

    Swift

    public let channelURL: String
  • Restricts the search scope only to retrieve the messages with the specified message status. If not specified, all messages are retrieved.

    Since

    4.0.0

    Declaration

    Swift

    public var scheduledStatusOptions: ScheduledStatusOptions = []
  • Restricts the search scope only to retrieve messages with the specified message type. Default is .all.

    Since

    4.0.0

    Declaration

    Swift

    public var messageTypeFilter: MessageTypeFilter = .all
  • Initializes and returns a params object for getting total scheduled message count.

    Declaration

    Swift

    public init(channelURL: String)