EMOobOutgoingMessage

Objective-C

@protocol EMOobOutgoingMessage <EMOobMessage>

Swift

protocol EMOobOutgoingMessage : EMOobMessage

Interface to an outgoing message to the OOB server.

Since

3.0
  • Gets the underlying outgoing message type.

    Since

    3.0

    Declaration

    Objective-C

    @required
    @property (nonatomic, readonly) NSString *messageType;

    Swift

    var messageType: String! { get }

    Return Value

    The outgoing message type.

  • Sets the message identifier.

    Since

    3.0

    Declaration

    Objective-C

    - (void)setMessageId:(NSString *)aMessageId;

    Swift

    func setMessageId(_ aMessageId: String!)

    Parameters

    aMessageId

    Identifier of the message to send. Must not be nil.

  • Deprecated

    Sets the provider identifier.

    Since

    3.0

    Declaration

    Objective-C

    - (void)setProviderId:(NSString *)aProviderId;

    Swift

    func setProviderId(_ aProviderId: String!)

    Parameters

    aProviderId

    Identifier of the provider. Must not be nil.