Class: Google::Apis::TranslateV3::LanguageCodePair

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

Used with unidirectional glossaries.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ LanguageCodePair

Returns a new instance of LanguageCodePair.

[View source]

1343
1344
1345
# File 'lib/google/apis/translate_v3/classes.rb', line 1343

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

Instance Attribute Details

#source_language_codeString

Required. The ISO-639 language code of the input text, for example, "en-US". Expected to be an exact match for GlossaryTerm.language_code. Corresponds to the JSON property sourceLanguageCode

Returns:

  • (String)

1335
1336
1337
# File 'lib/google/apis/translate_v3/classes.rb', line 1335

def source_language_code
  @source_language_code
end

#target_language_codeString

Required. The ISO-639 language code for translation output, for example, "zh- CN". Expected to be an exact match for GlossaryTerm.language_code. Corresponds to the JSON property targetLanguageCode

Returns:

  • (String)

1341
1342
1343
# File 'lib/google/apis/translate_v3/classes.rb', line 1341

def target_language_code
  @target_language_code
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

1348
1349
1350
1351
# File 'lib/google/apis/translate_v3/classes.rb', line 1348

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