Class: Google::Apis::AndroidpublisherV3::LocalizedText
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::LocalizedText
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/androidpublisher_v3/classes.rb,
lib/google/apis/androidpublisher_v3/representations.rb,
lib/google/apis/androidpublisher_v3/representations.rb
Overview
Localized text in given language.
Instance Attribute Summary collapse
-
#language ⇒ String
Language localization code (a BCP-47 language tag; for example, "de-AT" for Austrian German).
-
#text ⇒ String
The text in the given language.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LocalizedText
constructor
A new instance of LocalizedText.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ LocalizedText
Returns a new instance of LocalizedText.
3637 3638 3639 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3637 def initialize(**args) update!(**args) end |
Instance Attribute Details
#language ⇒ String
Language localization code (a BCP-47 language tag; for example, "de-AT" for
Austrian German).
Corresponds to the JSON property language
3630 3631 3632 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3630 def language @language end |
#text ⇒ String
The text in the given language.
Corresponds to the JSON property text
3635 3636 3637 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3635 def text @text end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3642 3643 3644 3645 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3642 def update!(**args) @language = args[:language] if args.key?(:language) @text = args[:text] if args.key?(:text) end |