VivochaMessage

@interface VivochaMessage : VivochaChatObject

Represents a Vivocha message during a chat contact

  • @property (nonatomic, strong) NSString *messageText;

    The text of the message.

  • + (VivochaMessage *)messageWithText:(NSString *)text
                          andIsOutgoing:(BOOL)isOutgoing;

    Factory method to instantiate a VivochaMessage object.

    Parameters

    text

    the message text

    isOutgoing

    YES if it is an outgoing message, NO if it is incoming.

    Return Value

    the VivochaMessage object.