Class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentTranslation
- Inherits:
-
Object
- Object
- Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentTranslation
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/documentai_v1beta3/classes.rb,
generated/google/apis/documentai_v1beta3/representations.rb,
generated/google/apis/documentai_v1beta3/representations.rb
Overview
A translation of the text segment.
Instance Attribute Summary collapse
-
#language_code ⇒ String
The BCP-47 language code, such as "en-US" or "sr-Latn".
-
#provenance ⇒ Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentProvenance>
The history of this annotation.
-
#text_anchor ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentTextAnchor
Text reference indexing into the Document.text.
-
#translated_text ⇒ String
Text translated into the target language.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta2DocumentTranslation
constructor
A new instance of GoogleCloudDocumentaiV1beta2DocumentTranslation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta2DocumentTranslation
Returns a new instance of GoogleCloudDocumentaiV1beta2DocumentTranslation.
3523 3524 3525 |
# File 'generated/google/apis/documentai_v1beta3/classes.rb', line 3523 def initialize(**args) update!(**args) end |
Instance Attribute Details
#language_code ⇒ String
The BCP-47 language code, such as "en-US" or "sr-Latn". For more information,
see http://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
Corresponds to the JSON property languageCode
3506 3507 3508 |
# File 'generated/google/apis/documentai_v1beta3/classes.rb', line 3506 def language_code @language_code end |
#provenance ⇒ Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentProvenance>
The history of this annotation.
Corresponds to the JSON property provenance
3511 3512 3513 |
# File 'generated/google/apis/documentai_v1beta3/classes.rb', line 3511 def provenance @provenance end |
#text_anchor ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentTextAnchor
Text reference indexing into the Document.text.
Corresponds to the JSON property textAnchor
3516 3517 3518 |
# File 'generated/google/apis/documentai_v1beta3/classes.rb', line 3516 def text_anchor @text_anchor end |
#translated_text ⇒ String
Text translated into the target language.
Corresponds to the JSON property translatedText
3521 3522 3523 |
# File 'generated/google/apis/documentai_v1beta3/classes.rb', line 3521 def translated_text @translated_text end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3528 3529 3530 3531 3532 3533 |
# File 'generated/google/apis/documentai_v1beta3/classes.rb', line 3528 def update!(**args) @language_code = args[:language_code] if args.key?(:language_code) @provenance = args[:provenance] if args.key?(:provenance) @text_anchor = args[:text_anchor] if args.key?(:text_anchor) @translated_text = args[:translated_text] if args.key?(:translated_text) end |