Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

TranslateTextResponse

import type { TranslateTextResponse } from "https://aws-api.deno.dev/v0.4/services/translate.ts?docs=full";
interface TranslateTextResponse {
AppliedSettings?: TranslationSettings | null;
AppliedTerminologies?: AppliedTerminology[] | null;
SourceLanguageCode: string;
TargetLanguageCode: string;
TranslatedText: string;
}

§Properties

§
AppliedSettings?: TranslationSettings | null
[src]

Settings that configure the translation output.

§
AppliedTerminologies?: AppliedTerminology[] | null
[src]

The names of the custom terminologies applied to the input text by Amazon Translate for the translated text response.

§
SourceLanguageCode: string
[src]

The language code for the language of the source text.

§
TargetLanguageCode: string
[src]

The language code for the language of the target text.

§
TranslatedText: string
[src]

The translated text.