Class: Google::Apis::GamesConfigurationV1configuration::LocalizedString
- Inherits:
-
Object
- Object
- Google::Apis::GamesConfigurationV1configuration::LocalizedString
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/games_configuration_v1configuration/classes.rb,
lib/google/apis/games_configuration_v1configuration/representations.rb,
lib/google/apis/games_configuration_v1configuration/representations.rb
Overview
A localized string resource.
Instance Attribute Summary collapse
-
#kind ⇒ String
Uniquely identifies the type of this resource.
-
#locale ⇒ String
The locale string.
-
#value ⇒ String
The string value.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LocalizedString
constructor
A new instance of LocalizedString.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ LocalizedString
Returns a new instance of LocalizedString.
413 414 415 |
# File 'lib/google/apis/games_configuration_v1configuration/classes.rb', line 413 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
Uniquely identifies the type of this resource. Value is always the fixed
string gamesConfiguration#localizedString.
Corresponds to the JSON property kind
401 402 403 |
# File 'lib/google/apis/games_configuration_v1configuration/classes.rb', line 401 def kind @kind end |
#locale ⇒ String
The locale string.
Corresponds to the JSON property locale
406 407 408 |
# File 'lib/google/apis/games_configuration_v1configuration/classes.rb', line 406 def locale @locale end |
#value ⇒ String
The string value.
Corresponds to the JSON property value
411 412 413 |
# File 'lib/google/apis/games_configuration_v1configuration/classes.rb', line 411 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
418 419 420 421 422 |
# File 'lib/google/apis/games_configuration_v1configuration/classes.rb', line 418 def update!(**args) @kind = args[:kind] if args.key?(:kind) @locale = args[:locale] if args.key?(:locale) @value = args[:value] if args.key?(:value) end |