Files
featherVoice/TUIKit/TUIVoiceToTextPlugin/CommonModel/TUIVoiceToTextConfig.h

33 lines
621 B
C
Raw Normal View History

2025-08-08 10:49:36 +08:00
//
// TUIVoiceToTextConfig.h
// TTUIVoiceToText
//
// Created by xia on 2023/8/17.
// Copyright © 2023 Tencent. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <TIMCommon/TIMCommonModel.h>
NS_ASSUME_NONNULL_BEGIN
@interface TUIVoiceToTextConfig : NSObject
+ (TUIVoiceToTextConfig *)defaultConfig;
/**
*
* Recognize target language code.
*/
@property(nonatomic, copy) NSString *targetLanguageCode;
/**
*
* Recognize target language name.
*/
@property(nonatomic, copy, readonly) NSString *targetLanguageName;
@end
NS_ASSUME_NONNULL_END