消息翻译结果。

interface MessageTranslationResult {
    detectedLanguage?: { language: string; score: number };
    translations: readonly MessageTranslation[];
}

Properties

detectedLanguage?: { language: string; score: number }

服务端识别出的源语言信息。

Type declaration

  • language: string

    源语言代码。

  • score: number

    识别置信度。

translations: readonly MessageTranslation[]

翻译结果列表。