Class: Google::Apis::AndroidpublisherV2::ApkListing
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV2::ApkListing
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androidpublisher_v2/classes.rb,
generated/google/apis/androidpublisher_v2/representations.rb,
generated/google/apis/androidpublisher_v2/representations.rb
Instance Attribute Summary collapse
-
#language ⇒ String
The language code, in BCP 47 format (eg "en-US").
-
#recent_changes ⇒ String
Describe what's new in your APK.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ApkListing
constructor
A new instance of ApkListing.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ApkListing
Returns a new instance of ApkListing
91 92 93 |
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 91 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
84 85 86 |
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 84 def language @language end |
#recent_changes ⇒ String
Describe what's new in your APK.
Corresponds to the JSON property recentChanges
89 90 91 |
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 89 def recent_changes @recent_changes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
96 97 98 99 |
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 96 def update!(**args) @language = args[:language] if args.key?(:language) @recent_changes = args[:recent_changes] if args.key?(:recent_changes) end |