Class: Google::Apis::TranslateV3::ReferenceSentencePair

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
more...

Overview

A pair of sentences used as reference in source and target languages.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ReferenceSentencePair

Returns a new instance of ReferenceSentencePair.

[View source]

1888
1889
1890
# File 'lib/google/apis/translate_v3/classes.rb', line 1888

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

Instance Attribute Details

#source_sentenceString

Source sentence in the sentence pair. Corresponds to the JSON property sourceSentence

Returns:

  • (String)

1881
1882
1883
# File 'lib/google/apis/translate_v3/classes.rb', line 1881

def source_sentence
  @source_sentence
end

#target_sentenceString

Target sentence in the sentence pair. Corresponds to the JSON property targetSentence

Returns:

  • (String)

1886
1887
1888
# File 'lib/google/apis/translate_v3/classes.rb', line 1886

def target_sentence
  @target_sentence
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

1893
1894
1895
1896
# File 'lib/google/apis/translate_v3/classes.rb', line 1893

def update!(**args)
  @source_sentence = args[:source_sentence] if args.key?(:source_sentence)
  @target_sentence = args[:target_sentence] if args.key?(:target_sentence)
end