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

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

Release notes specification, i.e. language and text.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ LocalizedText

Returns a new instance of LocalizedText.



1430
1431
1432
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1430

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

Instance Attribute Details

#languageString

Language localization code (a BCP-47 language tag; for example, "de-AT" for Austrian German). Corresponds to the JSON property language

Returns:

  • (String)


1423
1424
1425
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1423

def language
  @language
end

#textString

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

Returns:

  • (String)


1428
1429
1430
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1428

def text
  @text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1435
1436
1437
1438
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1435

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