Class: Google::Apis::AndroidpublisherV3::LocalizedText
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::LocalizedText
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androidpublisher_v3/classes.rb,
generated/google/apis/androidpublisher_v3/representations.rb,
generated/google/apis/androidpublisher_v3/representations.rb
Instance Attribute Summary collapse
-
#language ⇒ String
The language code, in BCP 47 format (eg "en-US").
-
#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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ LocalizedText
Returns a new instance of LocalizedText.
1120 1121 1122 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1120 def initialize(**args) update!(**args) end |
Instance Attribute Details
#language ⇒ String
The language code, in BCP 47 format (eg "en-US").
Corresponds to the JSON property language
1113 1114 1115 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1113 def language @language end |
#text ⇒ String
The text in the given language
.
Corresponds to the JSON property text
1118 1119 1120 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1118 def text @text end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1125 1126 1127 1128 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1125 def update!(**args) @language = args[:language] if args.key?(:language) @text = args[:text] if args.key?(:text) end |