Class: Google::Apis::TranslateV3::Example

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/translate_v3/classes.rb,
lib/google/apis/translate_v3/representations.rb,
lib/google/apis/translate_v3/representations.rb

Overview

A sentence pair.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Example

Returns a new instance of Example.



592
593
594
# File 'lib/google/apis/translate_v3/classes.rb', line 592

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#nameString

Output only. The resource name of the example, in form of projects/project- number-or-id/locations/location_id/datasets/dataset_id/examples/ example_id' Corresponds to the JSON propertyname`

Returns:

  • (String)


575
576
577
# File 'lib/google/apis/translate_v3/classes.rb', line 575

def name
  @name
end

#source_textString

Sentence in source language. Corresponds to the JSON property sourceText

Returns:

  • (String)


580
581
582
# File 'lib/google/apis/translate_v3/classes.rb', line 580

def source_text
  @source_text
end

#target_textString

Sentence in target language. Corresponds to the JSON property targetText

Returns:

  • (String)


585
586
587
# File 'lib/google/apis/translate_v3/classes.rb', line 585

def target_text
  @target_text
end

#usageString

Output only. Usage of the sentence pair. Options are TRAIN|VALIDATION|TEST. Corresponds to the JSON property usage

Returns:

  • (String)


590
591
592
# File 'lib/google/apis/translate_v3/classes.rb', line 590

def usage
  @usage
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



597
598
599
600
601
602
# File 'lib/google/apis/translate_v3/classes.rb', line 597

def update!(**args)
  @name = args[:name] if args.key?(:name)
  @source_text = args[:source_text] if args.key?(:source_text)
  @target_text = args[:target_text] if args.key?(:target_text)
  @usage = args[:usage] if args.key?(:usage)
end