ScheduledMessageRetrievalParams

@objc(SBDScheduledMessageRetrievalParams)
public class ScheduledMessageRetrievalParams : NSObject

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

Since

4.0.0
  • Specifies the URL of the channel to retrieve the message.

    Since

    4.0.0

    Declaration

    Swift

    @objc
    public let channelURL: String
  • Specifies the unique ID of the scheduled message to retrieve.

    Since

    4.0.0

    Declaration

    Swift

    @objc
    public let scheduledMessageId: Int64
  • Initializes and returns a params object for retrieving scheduled message.

    Declaration

    Swift

    @objc
    public init(
        channelURL: String,
        scheduledMessageId: Int64
    )