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
textthe message text
isOutgoingYES if it is an outgoing message, NO if it is incoming.
Return Value
the VivochaMessage object.