class Google::Apis::AndroidpublisherV2::Listing

Attributes

full_description[RW]

Full description of the app; this may be up to 4000 characters in length. Corresponds to the JSON property `fullDescription` @return [String]

language[RW]

Language localization code (for example, “de-AT” for Austrian German). Corresponds to the JSON property `language` @return [String]

short_description[RW]

Short description of the app (previously known as promo text); this may be up to 80 characters in length. Corresponds to the JSON property `shortDescription` @return [String]

title[RW]

App's localized title. Corresponds to the JSON property `title` @return [String]

video[RW]

URL of a promotional YouTube video for the app. Corresponds to the JSON property `video` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/androidpublisher_v2/classes.rb, line 962
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/androidpublisher_v2/classes.rb, line 967
def update!(**args)
  @full_description = args[:full_description] if args.key?(:full_description)
  @language = args[:language] if args.key?(:language)
  @short_description = args[:short_description] if args.key?(:short_description)
  @title = args[:title] if args.key?(:title)
  @video = args[:video] if args.key?(:video)
end