Class: Google::Apis::TranslateV3::SupportedLanguage

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 single supported language response corresponds to information related to one supported language.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SupportedLanguage

Returns a new instance of SupportedLanguage.



1466
1467
1468
# File 'lib/google/apis/translate_v3/classes.rb', line 1466

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

Instance Attribute Details

#display_nameString

Human-readable name of the language localized in the display language specified in the request. Corresponds to the JSON property displayName

Returns:

  • (String)


1445
1446
1447
# File 'lib/google/apis/translate_v3/classes.rb', line 1445

def display_name
  @display_name
end

#language_codeString

Supported language code, generally consisting of its ISO 639-1 identifier, for example, 'en', 'ja'. In certain cases, BCP-47 codes including language and region identifiers are returned (for example, 'zh-TW' and 'zh-CN'). Corresponds to the JSON property languageCode

Returns:

  • (String)


1452
1453
1454
# File 'lib/google/apis/translate_v3/classes.rb', line 1452

def language_code
  @language_code
end

#support_sourceBoolean Also known as: support_source?

Can be used as a source language. Corresponds to the JSON property supportSource

Returns:

  • (Boolean)


1457
1458
1459
# File 'lib/google/apis/translate_v3/classes.rb', line 1457

def support_source
  @support_source
end

#support_targetBoolean Also known as: support_target?

Can be used as a target language. Corresponds to the JSON property supportTarget

Returns:

  • (Boolean)


1463
1464
1465
# File 'lib/google/apis/translate_v3/classes.rb', line 1463

def support_target
  @support_target
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1471
1472
1473
1474
1475
1476
# File 'lib/google/apis/translate_v3/classes.rb', line 1471

def update!(**args)
  @display_name = args[:display_name] if args.key?(:display_name)
  @language_code = args[:language_code] if args.key?(:language_code)
  @support_source = args[:support_source] if args.key?(:support_source)
  @support_target = args[:support_target] if args.key?(:support_target)
end