Show / Hide Table of Contents

Class Translation

A single translation response.

Inheritance
System.Object
Translation
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Translate.v3.Data
Assembly: Google.Apis.Translate.v3.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
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.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
System.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
System.String

Implements

IDirectResponseSchema
In This Article
Back to top Generated by DocFX