Class Translation
A single translation response.
Implements
Inherited Members
Namespace: Google.Apis.Translate.v3beta1.Data
Assembly: Google.Apis.Translate.v3beta1.dll
Syntax
public class Translation : IDirectResponseSchema
Properties
DetectedLanguageCode
The BCP-47 language code of source text in the initial request, detected automatically, if no source language was passed within the initial request. If the source language was passed, auto-detection of the language does not occur and this field is empty.
Declaration
[JsonProperty("detectedLanguageCode")]
public virtual string DetectedLanguageCode { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
GlossaryConfig
The glossary_config
used for this translation.
Declaration
[JsonProperty("glossaryConfig")]
public virtual TranslateTextGlossaryConfig GlossaryConfig { get; set; }
Property Value
Type | Description |
---|---|
TranslateTextGlossaryConfig |
Model
Only present when model
is present in the request. model
here is normalized to have project number. For
example: If the model
requested in TranslationTextRequest is
projects/{project-id}/locations/{location-id}/models/general/nmt
then model
here would be normalized to
projects/{project-number}/locations/{location-id}/models/general/nmt
.
Declaration
[JsonProperty("model")]
public virtual string Model { get; set; }
Property Value
Type | Description |
---|---|
string |
TranslatedText
Text translated into the target language. If an error occurs during translation, this field might be excluded from the response.
Declaration
[JsonProperty("translatedText")]
public virtual string TranslatedText { get; set; }
Property Value
Type | Description |
---|---|
string |