Class: Google::Apis::TranslateV2::GetSupportedLanguagesRequest

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

Overview

The request message for discovering supported languages.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GetSupportedLanguagesRequest

Returns a new instance of GetSupportedLanguagesRequest



260
261
262
# File 'generated/google/apis/translate_v2/classes.rb', line 260

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

Instance Attribute Details

#targetString

The language to use to return localized, human readable names of supported languages. Corresponds to the JSON property target

Returns:

  • (String)


258
259
260
# File 'generated/google/apis/translate_v2/classes.rb', line 258

def target
  @target
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



265
266
267
# File 'generated/google/apis/translate_v2/classes.rb', line 265

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