class Google::Apis::GamesConfigurationV1configuration::GamesNumberAffixConfiguration

A number affix resource.

Attributes

few[RW]

A localized string bundle resource. Corresponds to the JSON property `few` @return [Google::Apis::GamesConfigurationV1configuration::LocalizedStringBundle]

many[RW]

A localized string bundle resource. Corresponds to the JSON property `many` @return [Google::Apis::GamesConfigurationV1configuration::LocalizedStringBundle]

one[RW]

A localized string bundle resource. Corresponds to the JSON property `one` @return [Google::Apis::GamesConfigurationV1configuration::LocalizedStringBundle]

other[RW]

A localized string bundle resource. Corresponds to the JSON property `other` @return [Google::Apis::GamesConfigurationV1configuration::LocalizedStringBundle]

two[RW]

A localized string bundle resource. Corresponds to the JSON property `two` @return [Google::Apis::GamesConfigurationV1configuration::LocalizedStringBundle]

zero[RW]

A localized string bundle resource. Corresponds to the JSON property `zero` @return [Google::Apis::GamesConfigurationV1configuration::LocalizedStringBundle]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/games_configuration_v1configuration/classes.rb, line 203
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 208
def update!(**args)
  @few = args[:few] if args.key?(:few)
  @many = args[:many] if args.key?(:many)
  @one = args[:one] if args.key?(:one)
  @other = args[:other] if args.key?(:other)
  @two = args[:two] if args.key?(:two)
  @zero = args[:zero] if args.key?(:zero)
end