2025-10-09 16:48:46 +08:00

35 lines
1.1 KiB
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Copyright (c) 2022 NetEase, Inc. All rights reserved.
// Use of this source code is governed by a MIT license that can be
// found in the LICENSE file.
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface NERtcCallOptions : NSObject
/// 推送证书名称
@property(nonatomic, copy) NSString *APNSCerName;
/// 呼叫推送证书名称
@property(nonatomic, copy) NSString *VoIPCerName;
/// 被叫是否自动加入channel
@property(nonatomic, assign) BOOL supportAutoJoinWhenCalled;
/// 是否关闭话单默认NO不关闭
@property(nonatomic, assign) BOOL disableRecord;
/// 主叫是否在呼叫时加入rtc默认为NO不提前加入在被叫接听时加入如设置提前加入房间会带来通话费用的增加同时提升首帧开画时间
@property(nonatomic, assign) BOOL joinRtcWhenCall;
/// 是否在初始化的时候初始化Rtc默认为YES设置为NO主叫在呼叫时初始化被叫在有呼叫到达的时候初始化
@property(nonatomic, assign) BOOL globalInit;
/// 是否初始化呼叫组件日志
@property(nonatomic, assign) BOOL isDisableLog;
@end
NS_ASSUME_NONNULL_END