HyphenateChatSDK  3.8.3.1
EMCustomMessageBody.h
1 
15 #import <Foundation/Foundation.h>
16 #import "EMCommonDefs.h"
17 #import "EMMessageBody.h"
18 
27 
28 @property (nonatomic, copy) NSString *event;
29 
30 @property (nonatomic, copy) NSDictionary<NSString *,NSString *> *customExt;
31 
32 - (instancetype)initWithEvent:(NSString *)aEvent customExt:(NSDictionary<NSString *,NSString *> *)aCustomExt;
33 
34 #pragma mark - EM_DEPRECATED_IOS 3.7.2
35 
36 @property (nonatomic, copy) NSDictionary *ext; EM_DEPRECATED_IOS(3_6_5, 3_7_2, "Use - customExt");
37 
38 - (instancetype)initWithEvent:(NSString *)aEvent ext:(NSDictionary *)aExt; EM_DEPRECATED_IOS(3_6_5, 3_7_2, "Use - initWithEvent:customExt:");
39 
40 @end
Definition: EMCustomMessageBody.h:27
Definition: EMMessageBody.h:44