视频通话插件 - iOS v2601.0
载入中...
搜索中...
未找到
JCallAcceptParam.h
1//
2// JCallAcceptParam.h
3// JCCGuestPlugin
4//
5// Created by gk on 2025/1/26.
6// Copyright © 2025 juphoon. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
13
14NS_ASSUME_NONNULL_BEGIN
15
17@interface JCallAcceptParam : NSObject
18
22@property (nonatomic, copy) NSString *traceId;
23
29@property (nonatomic, assign) int role;
30
34@property (nonatomic, assign) int minSendBwe;
35
39@property (nonatomic, assign) int maxSendBwe;
40
44@property (nonatomic, assign) int minReceiveBwe;
45
49@property (nonatomic, assign) int maxReceiveBwe;
50
51@end
52
53NS_ASSUME_NONNULL_END
54
接受邀请参数
定义 JCallAcceptParam.h:18
int maxReceiveBwe
定义 JCallAcceptParam.h:49
int role
定义 JCallAcceptParam.h:29
NSString * traceId
定义 JCallAcceptParam.h:22
int minReceiveBwe
定义 JCallAcceptParam.h:44
int maxSendBwe
定义 JCallAcceptParam.h:39
int minSendBwe
定义 JCallAcceptParam.h:34