Class: Google::Apis::WalletobjectsV1::TranslatedString

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/walletobjects_v1/classes.rb,
lib/google/apis/walletobjects_v1/representations.rb,
lib/google/apis/walletobjects_v1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TranslatedString

Returns a new instance of TranslatedString.



8223
8224
8225
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 8223

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#kindString

Identifies what kind of resource this is. Value: the fixed string " walletobjects#translatedString". Corresponds to the JSON property kind

Returns:

  • (String)


8210
8211
8212
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 8210

def kind
  @kind
end

#languageString

Represents the BCP 47 language tag. Example values are "en-US", "en-GB", "de", or "de-AT". Corresponds to the JSON property language

Returns:

  • (String)


8216
8217
8218
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 8216

def language
  @language
end

#valueString

The UTF-8 encoded translated string. Corresponds to the JSON property value

Returns:

  • (String)


8221
8222
8223
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 8221

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8228
8229
8230
8231
8232
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 8228

def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @language = args[:language] if args.key?(:language)
  @value = args[:value] if args.key?(:value)
end