class Google::Apis::AndroidpublisherV3::InAppProductListing

Store listing of a single in-app product.

Attributes

benefits[RW]

Localized entitlement benefits for a subscription. Corresponds to the JSON property `benefits` @return [Array<String>]

description[RW]

Description for the store listing. Corresponds to the JSON property `description` @return [String]

title[RW]

Title for the store listing. Corresponds to the JSON property `title` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/androidpublisher_v3/classes.rb, line 851
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 856
def update!(**args)
  @benefits = args[:benefits] if args.key?(:benefits)
  @description = args[:description] if args.key?(:description)
  @title = args[:title] if args.key?(:title)
end