JRTCSDK-iOS v2302.0
视频客服 API 文档
载入中...
搜索中...
未找到
JRTCSDKEvent.h
1//
2// JRTCSDKEvent.h
3// JRTCSDK
4//
5// Created by YC on 2021/11/25.
6// Copyright © 2021 juphoon. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
12
15
17@interface JRTCSDKEvent : NSObject
18
22@property (nonatomic, copy) NSString *errorCode;
23
27@property (nonatomic, copy) NSString *errorCodeDetail;
28
32@property (nonatomic, assign) int eventCode;
33
37@property (nonatomic, copy) NSString *desc;
38
42- (NSDictionary *_Nullable)toDictionary;
43
44@end
45
47
48NS_ASSUME_NONNULL_END
SDK 事件
Definition: JRTCSDKEvent.h:18
NSString * desc
Definition: JRTCSDKEvent.h:37
NSString * errorCode
Definition: JRTCSDKEvent.h:22
NSString * errorCodeDetail
Definition: JRTCSDKEvent.h:27
NSDictionary *_Nullable toDictionary()
int eventCode
Definition: JRTCSDKEvent.h:32