class Google::Apis::AndroidpublisherV3::Listing
A localized store listing. The resource for ListingsService.
Attributes
full_description[RW]
Full description of the app. Corresponds to the JSON property `fullDescription` @return [String]
language[RW]
Language localization code (a BCP-47 language tag; for example, “de-AT” for Austrian German). Corresponds to the JSON property `language` @return [String]
short_description[RW]
Short description of the app. Corresponds to the JSON property `shortDescription` @return [String]
title[RW]
Localized title of the app. 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 lib/google/apis/androidpublisher_v3/classes.rb, line 1017 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/androidpublisher_v3/classes.rb, line 1022 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