Class: Google::Apis::GamesConfigurationV1configuration::LocalizedString

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#kindString

Uniquely identifies the type of this resource. Value is always the fixed string gamesConfiguration#localizedString. Corresponds to the JSON property kind

Returns:

  • (String)


401
402
403
# File 'lib/google/apis/games_configuration_v1configuration/classes.rb', line 401

def kind
  @kind
end

#localeString

The locale string. Corresponds to the JSON property locale

Returns:

  • (String)


406
407
408
# File 'lib/google/apis/games_configuration_v1configuration/classes.rb', line 406

def locale
  @locale
end

#valueString

The string value. Corresponds to the JSON property value

Returns:

  • (String)


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