JRTCSDK-iOS v2302.0
视频客服 API 文档
载入中...
搜索中...
未找到
JRTCNotifyMessage.h
1//
2// JRTCNotifyMessage.h
3// JRTCSDK
4//
5// Created by YC on 2021/10/14.
6// Copyright © 2021 juphoon. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
15NS_ASSUME_NONNULL_BEGIN
16
18@interface JRTCNotifyMessage : NSObject
19
23@property (nonatomic, assign) int eventCode;
24
28@property (nonatomic, copy) NSString *desc;
29
33@property (nonatomic, copy) NSString *extra;
34
38- (NSDictionary *_Nullable)toDictionary;
39
40@end
41
42NS_ASSUME_NONNULL_END
事件通知
Definition: JRTCNotifyMessage.h:19
NSString * extra
Definition: JRTCNotifyMessage.h:33
NSString * desc
Definition: JRTCNotifyMessage.h:28
int eventCode
Definition: JRTCNotifyMessage.h:23
NSDictionary *_Nullable toDictionary()