class Google::Apis::AndroidpublisherV3::LocalizedText
Release notes specification, i.e. language and text.
Attributes
language[RW]
Language localization code (a BCP-47 language tag; for example, “de-AT” for Austrian German). Corresponds to the JSON property `language` @return [String]
text[RW]
The text in the given language. Corresponds to the JSON property `text` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/androidpublisher_v3/classes.rb, line 1071 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/androidpublisher_v3/classes.rb, line 1076 def update!(**args) @language = args[:language] if args.key?(:language) @text = args[:text] if args.key?(:text) end