Packages

package translate

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. case class Alignment(proj: String) extends Product with Serializable
  2. case class AlternativeDetectResponse(language: String, score: Double, isTranslationSupported: Boolean, isTransliterationSupported: Boolean) extends Product with Serializable
  3. case class BackTranslation(normalizedText: String, displayText: String, numExamples: Int, frequencyCount: Int) extends Product with Serializable
  4. case class BatchRequest(source: SourceInput, storageType: Option[String], targets: Seq[TargetInput]) extends Product with Serializable
  5. class BreakSentence extends TextTranslatorBase with TextAsOnlyEntity with SynapseMLLogging
  6. case class BreakSentenceResponse(sentLen: Seq[Int], detectedLanguage: TranslatorDetectedLanguage) extends Product with Serializable
  7. class Detect extends TextTranslatorBase with TextAsOnlyEntity with SynapseMLLogging
  8. case class DetectResponse(language: String, score: Double, isTranslationSupported: Boolean, isTransliterationSupported: Boolean, alternative: Seq[AlternativeDetectResponse]) extends Product with Serializable
  9. class DictionaryExamples extends TextTranslatorBase with HasTextAndTranslationInput with HasFromLanguage with HasToLanguage with HasCognitiveServiceInput with SynapseMLLogging
  10. case class DictionaryExamplesResponse(normalizedSource: String, normalizedTarget: String, examples: Seq[Example]) extends Product with Serializable
  11. class DictionaryLookup extends TextTranslatorBase with TextAsOnlyEntity with HasFromLanguage with HasToLanguage with SynapseMLLogging
  12. case class DictionaryLookupResponse(normalizedSource: String, displaySource: String, translations: Seq[DictionaryTranslation]) extends Product with Serializable
  13. case class DictionaryTranslation(normalizedTarget: String, displayTarget: String, posTag: String, confidence: Double, prefixWord: String, backTranslations: Seq[BackTranslation]) extends Product with Serializable
  14. case class DocumentFilter(prefix: Option[String], suffix: Option[String]) extends Product with Serializable
  15. case class DocumentTranslationInput(inputs: Seq[BatchRequest]) extends Product with Serializable
  16. class DocumentTranslator extends CognitiveServicesBaseNoHandler with HasInternalJsonOutputParser with HasCognitiveServiceInput with HasServiceName with Wrappable with DocumentTranslatorAsyncReply with SynapseMLLogging with HasSetLinkedService with DomainHelper
  17. trait DocumentTranslatorAsyncReply extends BasicAsyncReply
  18. case class Example(sourcePrefix: String, sourceTerm: String, sourceSuffix: String, targetPrefix: String, targetTerm: String, targetSuffix: String) extends Product with Serializable
  19. case class Glossary(format: String, glossaryUrl: String, storageSource: Option[String], version: Option[String]) extends Product with Serializable
  20. trait HasFromLanguage extends HasServiceParams
  21. trait HasSubscriptionRegion extends HasServiceParams
  22. trait HasTextAndTranslationInput extends HasServiceParams
  23. trait HasTextInput extends HasServiceParams
  24. trait HasToLanguage extends HasServiceParams
  25. case class SentLen(srcSentLen: Seq[Int], transSentLen: Seq[Int]) extends Product with Serializable
  26. case class SourceInput(filter: Option[DocumentFilter], language: Option[String], sourceUrl: String, storageSource: Option[String]) extends Product with Serializable
  27. case class SourceText(text: String) extends Product with Serializable
  28. case class StatusSummary(total: Int, failed: Int, success: Int, inProgress: Int, notYetStarted: Int, cancelled: Int, totalCharacterCharged: Int) extends Product with Serializable
  29. case class TargetInput(category: Option[String], glossaries: Option[Seq[Glossary]], targetUrl: String, language: String, storageSource: Option[String]) extends Product with Serializable
  30. case class TextAndTranslation(text: String, translation: String) extends Product with Serializable
  31. trait TextAsOnlyEntity extends HasTextInput with HasCognitiveServiceInput with HasSubscriptionRegion
  32. abstract class TextTranslatorBase extends CognitiveServicesBase with HasInternalJsonOutputParser with HasSubscriptionRegion with HasSetLocation with HasSetLinkedServiceUsingLocation
  33. class Translate extends TextTranslatorBase with TextAsOnlyEntity with SynapseMLLogging
  34. case class TranslateResponse(detectedLanguage: Option[TranslatorDetectedLanguage], translations: Seq[Translation], sourceText: Option[SourceText]) extends Product with Serializable
  35. case class Translation(to: String, text: String, transliteration: Option[Transliteration], alignment: Option[Alignment], sentLen: Option[SentLen]) extends Product with Serializable
  36. case class TranslationStatusResponse(id: String, createdDateTimeUtc: String, lastActionDateTimeUtc: String, status: String, summary: StatusSummary) extends Product with Serializable
  37. case class TranslatorDetectedLanguage(language: String, score: Double) extends Product with Serializable
  38. class Transliterate extends TextTranslatorBase with TextAsOnlyEntity with SynapseMLLogging
  39. case class TransliterateResponse(text: String, script: String) extends Product with Serializable
  40. case class Transliteration(script: String, text: String) extends Product with Serializable

Ungrouped