class Google::Apis::AndroidpublisherV3::InAppProduct

An in-app product. The resource for InappproductsService.

Attributes

default_language[RW]

Default language of the localized data, as defined by BCP-47. e.g. “en-US”. Corresponds to the JSON property `defaultLanguage` @return [String]

default_price[RW]

Definition of a price, i.e. currency and units. Corresponds to the JSON property `defaultPrice` @return [Google::Apis::AndroidpublisherV3::Price]

grace_period[RW]

Grace period of the subscription, specified in ISO 8601 format. Allows developers to give their subscribers a grace period when the payment for the new recurrence period is declined. Acceptable values are P0D (zero days), P3D ( three days), P7D (seven days), P14D (14 days), and P30D (30 days). Corresponds to the JSON property `gracePeriod` @return [String]

listings[RW]

List of localized title and description data. Map key is the language of the localized data, as defined by BCP-47, e.g. “en-US”. Corresponds to the JSON property `listings` @return [Hash<String,Google::Apis::AndroidpublisherV3::InAppProductListing>]

package_name[RW]

Package name of the parent app. Corresponds to the JSON property `packageName` @return [String]

prices[RW]

Prices per buyer region. None of these can be zero, as in-app products are never free. Map key is region code, as defined by ISO 3166-2. Corresponds to the JSON property `prices` @return [Hash<String,Google::Apis::AndroidpublisherV3::Price>]

purchase_type[RW]

The type of the product, e.g. a recurring subscription. Corresponds to the JSON property `purchaseType` @return [String]

sku[RW]

Stock-keeping-unit (SKU) of the product, unique within an app. Corresponds to the JSON property `sku` @return [String]

status[RW]

The status of the product, e.g. whether it's active. Corresponds to the JSON property `status` @return [String]

subscription_period[RW]

Subscription period, specified in ISO 8601 format. Acceptable values are P1W ( one week), P1M (one month), P3M (three months), P6M (six months), and P1Y (one year). Corresponds to the JSON property `subscriptionPeriod` @return [String]

trial_period[RW]

Trial period, specified in ISO 8601 format. Acceptable values are anything between P7D (seven days) and P999D (999 days). Corresponds to the JSON property `trialPeriod` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/androidpublisher_v3/classes.rb, line 812
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 817
def update!(**args)
  @default_language = args[:default_language] if args.key?(:default_language)
  @default_price = args[:default_price] if args.key?(:default_price)
  @grace_period = args[:grace_period] if args.key?(:grace_period)
  @listings = args[:listings] if args.key?(:listings)
  @package_name = args[:package_name] if args.key?(:package_name)
  @prices = args[:prices] if args.key?(:prices)
  @purchase_type = args[:purchase_type] if args.key?(:purchase_type)
  @sku = args[:sku] if args.key?(:sku)
  @status = args[:status] if args.key?(:status)
  @subscription_period = args[:subscription_period] if args.key?(:subscription_period)
  @trial_period = args[:trial_period] if args.key?(:trial_period)
end