Class: Google::Apis::AndroidenterpriseV1::LocalizedText
- Inherits:
-
Object
- Object
- Google::Apis::AndroidenterpriseV1::LocalizedText
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androidenterprise_v1/classes.rb,
generated/google/apis/androidenterprise_v1/representations.rb,
generated/google/apis/androidenterprise_v1/representations.rb
Overview
A localized string with its locale.
Instance Attribute Summary collapse
-
#locale ⇒ String
The BCP47 tag for a locale.
-
#text ⇒ String
The text localized in the associated locale.
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
986 987 988 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 986 def initialize(**args) update!(**args) end |
Instance Attribute Details
#locale ⇒ String
The BCP47 tag for a locale. (e.g. "en-US", "de").
Corresponds to the JSON property locale
979 980 981 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 979 def locale @locale end |
#text ⇒ String
The text localized in the associated locale.
Corresponds to the JSON property text
984 985 986 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 984 def text @text end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
991 992 993 994 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 991 def update!(**args) @locale = args[:locale] if args.key?(:locale) @text = args[:text] if args.key?(:text) end |