class Google::Apis::GamesConfigurationV1configuration::LocalizedString
This is a JSON template for 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 generated/google/apis/games_configuration_v1configuration/classes.rb, line 467 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/games_configuration_v1configuration/classes.rb, line 472 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