|
|
|
@ -14,7 +14,6 @@ typedef enum : NSUInteger {
|
|
|
|
|
kGroupUpdate = 6
|
|
|
|
|
} CallStatus;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@interface OWSCall : NSObject <JSQMessageData, NSCoding, NSCopying>
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
@ -22,7 +21,6 @@ typedef enum : NSUInteger {
|
|
|
|
|
*/
|
|
|
|
|
@property (copy, nonatomic, readonly) NSString *senderId;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Returns the display name for user who initiated the call
|
|
|
|
|
*/
|
|
|
|
@ -44,18 +42,11 @@ typedef enum : NSUInteger {
|
|
|
|
|
*/
|
|
|
|
|
@property (nonatomic) TSMessageAdapterType messageType;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* User can configure whether a thumbnail is used in the display of this cell or not
|
|
|
|
|
*/
|
|
|
|
|
@property (nonatomic) BOOL useThumbnail;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* String to be displayed
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
@property (nonatomic, copy) NSString *detailString;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#pragma mark - Initialization
|
|
|
|
|
|
|
|
|
|
- (instancetype)initWithCallerId:(NSString *)callerId
|
|
|
|
@ -66,6 +57,4 @@ typedef enum : NSUInteger {
|
|
|
|
|
|
|
|
|
|
- (NSString *)dateText;
|
|
|
|
|
|
|
|
|
|
- (UIImage *)thumbnailImage;
|
|
|
|
|
|
|
|
|
|
@end
|
|
|
|
|