class Google::Apis::GamesConfigurationV1configuration::LocalizedString

A localized string resource.

Attributes

kind[RW]

Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedString`. Corresponds to the JSON property `kind` @return [String]

locale[RW]

The locale string. Corresponds to the JSON property `locale` @return [String]

value[RW]

The string value. Corresponds to the JSON property `value` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/games_configuration_v1configuration/classes.rb, line 451
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/games_configuration_v1configuration/classes.rb, line 456
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