Class: Google::Apis::AndroidpublisherV3::LocalizedText

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ LocalizedText

Returns a new instance of LocalizedText.



1108
1109
1110
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1108

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

Instance Attribute Details

#languageString

The language code, in BCP 47 format (eg "en-US"). Corresponds to the JSON property language

Returns:

  • (String)


1101
1102
1103
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1101

def language
  @language
end

#textString

The text in the given language. Corresponds to the JSON property text

Returns:

  • (String)


1106
1107
1108
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1106

def text
  @text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1113
1114
1115
1116
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1113

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