Class: Google::Apis::AndroidpublisherV3::AppStoreAppStoreListing
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::AppStoreAppStoreListing
- 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
A localized store listing. These are the details about the app as shown in your app store.
Instance Attribute Summary collapse
-
#app_icon_id ⇒ String
Required.
-
#app_name ⇒ String
Required.
-
#full_description ⇒ String
Required.
-
#language_code ⇒ String
Required.
-
#screenshot_id ⇒ Array<String>
Required.
-
#short_description ⇒ String
Optional.
-
#video_link ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AppStoreAppStoreListing
constructor
A new instance of AppStoreAppStoreListing.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AppStoreAppStoreListing
Returns a new instance of AppStoreAppStoreListing.
853 854 855 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 853 def initialize(**args) update!(**args) end |
Instance Attribute Details
#app_icon_id ⇒ String
Required. Image ID generated from UploadImage for the main app icon.
Corresponds to the JSON property appIconId
821 822 823 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 821 def app_icon_id @app_icon_id end |
#app_name ⇒ String
Required. The title of the app.
Corresponds to the JSON property appName
826 827 828 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 826 def app_name @app_name end |
#full_description ⇒ String
Required. Comprehensive description text about the app.
Corresponds to the JSON property fullDescription
831 832 833 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 831 def full_description @full_description end |
#language_code ⇒ String
Required. Language code (e.g., "en-US") of the listing.
Corresponds to the JSON property languageCode
836 837 838 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 836 def language_code @language_code end |
#screenshot_id ⇒ Array<String>
Required. Multiple image IDs for screenshot galleries.
Corresponds to the JSON property screenshotId
841 842 843 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 841 def screenshot_id @screenshot_id end |
#short_description ⇒ String
Optional. Quick summary about the app.
Corresponds to the JSON property shortDescription
846 847 848 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 846 def short_description @short_description end |
#video_link ⇒ String
Optional. Link to a video about the app.
Corresponds to the JSON property videoLink
851 852 853 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 851 def video_link @video_link end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
858 859 860 861 862 863 864 865 866 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 858 def update!(**args) @app_icon_id = args[:app_icon_id] if args.key?(:app_icon_id) @app_name = args[:app_name] if args.key?(:app_name) @full_description = args[:full_description] if args.key?(:full_description) @language_code = args[:language_code] if args.key?(:language_code) @screenshot_id = args[:screenshot_id] if args.key?(:screenshot_id) @short_description = args[:short_description] if args.key?(:short_description) @video_link = args[:video_link] if args.key?(:video_link) end |