Class TranslateDocumentRequest
A document translation request.
Implements
Inherited Members
Namespace: Google.Apis.Translate.v3.Data
Assembly: Google.Apis.Translate.v3.dll
Syntax
public class TranslateDocumentRequest : IDirectResponseSchema
Properties
CustomizedAttribution
Optional. This flag is to support user customized attribution. If not provided, the default is Machine Translated by Google
. Customized attribution should follow rules in
https://cloud.google.com/translate/attribution#attribution_and_logos
Declaration
[JsonProperty("customizedAttribution")]
public virtual string CustomizedAttribution { get; set; }
Property Value
Type | Description |
---|---|
string |
DocumentInputConfig
Required. Input configurations.
Declaration
[JsonProperty("documentInputConfig")]
public virtual DocumentInputConfig DocumentInputConfig { get; set; }
Property Value
Type | Description |
---|---|
DocumentInputConfig |
DocumentOutputConfig
Optional. Output configurations. Defines if the output file should be stored within Cloud Storage as well as the desired output format. If not provided the translated file will only be returned through a byte-stream and its output mime type will be the same as the input file's mime type.
Declaration
[JsonProperty("documentOutputConfig")]
public virtual DocumentOutputConfig DocumentOutputConfig { get; set; }
Property Value
Type | Description |
---|---|
DocumentOutputConfig |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
EnableRotationCorrection
Optional. If true, enable auto rotation correction in DVS.
Declaration
[JsonProperty("enableRotationCorrection")]
public virtual bool? EnableRotationCorrection { get; set; }
Property Value
Type | Description |
---|---|
bool? |
EnableShadowRemovalNativePdf
Optional. If true, use the text removal server to remove the shadow text on background image for native pdf translation. Shadow removal feature can only be enabled when is_translate_native_pdf_only: false && pdf_native_only: false
Declaration
[JsonProperty("enableShadowRemovalNativePdf")]
public virtual bool? EnableShadowRemovalNativePdf { get; set; }
Property Value
Type | Description |
---|---|
bool? |
GlossaryConfig
Optional. Glossary to be applied. The glossary must be within the same region (have the same location-id) as the model, otherwise an INVALID_ARGUMENT (400) error is returned.
Declaration
[JsonProperty("glossaryConfig")]
public virtual TranslateTextGlossaryConfig GlossaryConfig { get; set; }
Property Value
Type | Description |
---|---|
TranslateTextGlossaryConfig |
IsTranslateNativePdfOnly
Optional. is_translate_native_pdf_only field for external customers. If true, the page limit of online native pdf translation is 300 and only native pdf pages will be translated.
Declaration
[JsonProperty("isTranslateNativePdfOnly")]
public virtual bool? IsTranslateNativePdfOnly { get; set; }
Property Value
Type | Description |
---|---|
bool? |
Labels
Optional. The labels with user-defined metadata for the request. Label keys and values can be no longer than 63 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. Label values are optional. Label keys must start with a letter. See https://cloud.google.com/translate/docs/advanced/labels for more information.
Declaration
[JsonProperty("labels")]
public virtual IDictionary<string, string> Labels { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<string, string> |
Model
Optional. The model
type requested for this translation. The format depends on model type: - AutoML
Translation models: projects/{project-number-or-id}/locations/{location-id}/models/{model-id}
- General
(built-in) models: projects/{project-number-or-id}/locations/{location-id}/models/general/nmt
, If not
provided, the default Google model (NMT) will be used for translation.
Declaration
[JsonProperty("model")]
public virtual string Model { get; set; }
Property Value
Type | Description |
---|---|
string |
SourceLanguageCode
Optional. The ISO-639 language code of the input document if known, for example, "en-US" or "sr-Latn". Supported language codes are listed in Language Support. If the source language isn't specified, the API attempts to identify the source language automatically and returns the source language within the response. Source language must be specified if the request contains a glossary or a custom model.
Declaration
[JsonProperty("sourceLanguageCode")]
public virtual string SourceLanguageCode { get; set; }
Property Value
Type | Description |
---|---|
string |
TargetLanguageCode
Required. The ISO-639 language code to use for translation of the input document, set to one of the language codes listed in Language Support.
Declaration
[JsonProperty("targetLanguageCode")]
public virtual string TargetLanguageCode { get; set; }
Property Value
Type | Description |
---|---|
string |