blob: 99684045b17a27bb06a3258e38e3db043e6741a9 [file] [log] [blame]
<html><body>
<style>
body, h1, h2, h3, div, span, p, pre, a {
margin: 0;
padding: 0;
border: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
}
body {
font-size: 13px;
padding: 1em;
}
h1 {
font-size: 26px;
margin-bottom: 1em;
}
h2 {
font-size: 24px;
margin-bottom: 1em;
}
h3 {
font-size: 20px;
margin-bottom: 1em;
margin-top: 1em;
}
pre, code {
line-height: 1.5;
font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
}
pre {
margin-top: 0.5em;
}
h1, h2, h3, p {
font-family: Arial, sans serif;
}
h1, h2, h3 {
border-bottom: solid #CCC 1px;
}
.toc_element {
margin-top: 0.5em;
}
.firstline {
margin-left: 2 em;
}
.method {
margin-top: 1em;
border: solid 1px #CCC;
padding: 1em;
background: #EEE;
}
.details {
font-weight: bold;
font-size: 14px;
}
</style>
<h1><a href="androidpublisher_v3.html">Google Play Android Developer API</a> . <a href="androidpublisher_v3.inappproducts.html">inappproducts</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
<code><a href="#delete">delete(packageName, sku, x__xgafv=None)</a></code></p>
<p class="firstline">Deletes an in-app product (i.e. a managed product or a subscriptions).</p>
<p class="toc_element">
<code><a href="#get">get(packageName, sku, x__xgafv=None)</a></code></p>
<p class="firstline">Gets an in-app product, which can be a managed product or a subscription.</p>
<p class="toc_element">
<code><a href="#insert">insert(packageName, body=None, autoConvertMissingPrices=None, x__xgafv=None)</a></code></p>
<p class="firstline">Creates an in-app product (i.e. a managed product or a subscriptions).</p>
<p class="toc_element">
<code><a href="#list">list(packageName, startIndex=None, token=None, maxResults=None, x__xgafv=None)</a></code></p>
<p class="firstline">Lists all in-app products - both managed products and subscriptions.</p>
<p class="toc_element">
<code><a href="#patch">patch(packageName, sku, body=None, autoConvertMissingPrices=None, x__xgafv=None)</a></code></p>
<p class="firstline">Patches an in-app product (i.e. a managed product or a subscriptions).</p>
<p class="toc_element">
<code><a href="#update">update(packageName, sku, body=None, autoConvertMissingPrices=None, x__xgafv=None)</a></code></p>
<p class="firstline">Updates an in-app product (i.e. a managed product or a subscriptions).</p>
<h3>Method Details</h3>
<div class="method">
<code class="details" id="delete">delete(packageName, sku, x__xgafv=None)</code>
<pre>Deletes an in-app product (i.e. a managed product or a subscriptions).
Args:
packageName: string, Package name of the app. (required)
sku: string, Unique identifier for the in-app product. (required)
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
</pre>
</div>
<div class="method">
<code class="details" id="get">get(packageName, sku, x__xgafv=None)</code>
<pre>Gets an in-app product, which can be a managed product or a subscription.
Args:
packageName: string, Package name of the app. (required)
sku: string, Unique identifier for the in-app product. (required)
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # An in-app product. The resource for InappproductsService.
&quot;prices&quot;: { # 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.
&quot;a_key&quot;: { # Definition of a price, i.e. currency and units.
&quot;currency&quot;: &quot;A String&quot;, # 3 letter Currency code, as defined by ISO 4217.
# See java/com/google/common/money/CurrencyCode.java
&quot;priceMicros&quot;: &quot;A String&quot;, # Price in 1/million of the currency base unit, represented as a string.
},
},
&quot;sku&quot;: &quot;A String&quot;, # Stock-keeping-unit (SKU) of the product, unique within an app.
&quot;defaultPrice&quot;: { # Definition of a price, i.e. currency and units. # Default price. Cannot be zero, as in-app products are never free.
# Always in the developer&#x27;s Checkout merchant currency.
&quot;currency&quot;: &quot;A String&quot;, # 3 letter Currency code, as defined by ISO 4217.
# See java/com/google/common/money/CurrencyCode.java
&quot;priceMicros&quot;: &quot;A String&quot;, # Price in 1/million of the currency base unit, represented as a string.
},
&quot;trialPeriod&quot;: &quot;A String&quot;, # Trial period, specified in ISO 8601 format. Acceptable values are anything
# between P7D (seven days) and P999D (999 days).
&quot;gracePeriod&quot;: &quot;A String&quot;, # 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).
&quot;purchaseType&quot;: &quot;A String&quot;, # The type of the product, e.g. a recurring subscription.
&quot;defaultLanguage&quot;: &quot;A String&quot;, # Default language of the localized data, as defined by BCP-47. e.g. &quot;en-US&quot;.
&quot;subscriptionPeriod&quot;: &quot;A String&quot;, # 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).
&quot;listings&quot;: { # List of localized title and description data. Map key is the language of
# the localized data, as defined by BCP-47, e.g. &quot;en-US&quot;.
&quot;a_key&quot;: { # Store listing of a single in-app product.
&quot;benefits&quot;: [ # Localized entitlement benefits for a subscription.
&quot;A String&quot;,
],
&quot;title&quot;: &quot;A String&quot;, # Title for the store listing.
&quot;description&quot;: &quot;A String&quot;, # Description for the store listing.
},
},
&quot;packageName&quot;: &quot;A String&quot;, # Package name of the parent app.
&quot;status&quot;: &quot;A String&quot;, # The status of the product, e.g. whether it&#x27;s active.
}</pre>
</div>
<div class="method">
<code class="details" id="insert">insert(packageName, body=None, autoConvertMissingPrices=None, x__xgafv=None)</code>
<pre>Creates an in-app product (i.e. a managed product or a subscriptions).
Args:
packageName: string, Package name of the app. (required)
body: object, The request body.
The object takes the form of:
{ # An in-app product. The resource for InappproductsService.
&quot;prices&quot;: { # 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.
&quot;a_key&quot;: { # Definition of a price, i.e. currency and units.
&quot;currency&quot;: &quot;A String&quot;, # 3 letter Currency code, as defined by ISO 4217.
# See java/com/google/common/money/CurrencyCode.java
&quot;priceMicros&quot;: &quot;A String&quot;, # Price in 1/million of the currency base unit, represented as a string.
},
},
&quot;sku&quot;: &quot;A String&quot;, # Stock-keeping-unit (SKU) of the product, unique within an app.
&quot;defaultPrice&quot;: { # Definition of a price, i.e. currency and units. # Default price. Cannot be zero, as in-app products are never free.
# Always in the developer&#x27;s Checkout merchant currency.
&quot;currency&quot;: &quot;A String&quot;, # 3 letter Currency code, as defined by ISO 4217.
# See java/com/google/common/money/CurrencyCode.java
&quot;priceMicros&quot;: &quot;A String&quot;, # Price in 1/million of the currency base unit, represented as a string.
},
&quot;trialPeriod&quot;: &quot;A String&quot;, # Trial period, specified in ISO 8601 format. Acceptable values are anything
# between P7D (seven days) and P999D (999 days).
&quot;gracePeriod&quot;: &quot;A String&quot;, # 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).
&quot;purchaseType&quot;: &quot;A String&quot;, # The type of the product, e.g. a recurring subscription.
&quot;defaultLanguage&quot;: &quot;A String&quot;, # Default language of the localized data, as defined by BCP-47. e.g. &quot;en-US&quot;.
&quot;subscriptionPeriod&quot;: &quot;A String&quot;, # 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).
&quot;listings&quot;: { # List of localized title and description data. Map key is the language of
# the localized data, as defined by BCP-47, e.g. &quot;en-US&quot;.
&quot;a_key&quot;: { # Store listing of a single in-app product.
&quot;benefits&quot;: [ # Localized entitlement benefits for a subscription.
&quot;A String&quot;,
],
&quot;title&quot;: &quot;A String&quot;, # Title for the store listing.
&quot;description&quot;: &quot;A String&quot;, # Description for the store listing.
},
},
&quot;packageName&quot;: &quot;A String&quot;, # Package name of the parent app.
&quot;status&quot;: &quot;A String&quot;, # The status of the product, e.g. whether it&#x27;s active.
}
autoConvertMissingPrices: boolean, If true the prices for all regions targeted by the parent app that don&#x27;t
have a price specified for this in-app product will be auto converted to
the target currency based on the default price. Defaults to false.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # An in-app product. The resource for InappproductsService.
&quot;prices&quot;: { # 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.
&quot;a_key&quot;: { # Definition of a price, i.e. currency and units.
&quot;currency&quot;: &quot;A String&quot;, # 3 letter Currency code, as defined by ISO 4217.
# See java/com/google/common/money/CurrencyCode.java
&quot;priceMicros&quot;: &quot;A String&quot;, # Price in 1/million of the currency base unit, represented as a string.
},
},
&quot;sku&quot;: &quot;A String&quot;, # Stock-keeping-unit (SKU) of the product, unique within an app.
&quot;defaultPrice&quot;: { # Definition of a price, i.e. currency and units. # Default price. Cannot be zero, as in-app products are never free.
# Always in the developer&#x27;s Checkout merchant currency.
&quot;currency&quot;: &quot;A String&quot;, # 3 letter Currency code, as defined by ISO 4217.
# See java/com/google/common/money/CurrencyCode.java
&quot;priceMicros&quot;: &quot;A String&quot;, # Price in 1/million of the currency base unit, represented as a string.
},
&quot;trialPeriod&quot;: &quot;A String&quot;, # Trial period, specified in ISO 8601 format. Acceptable values are anything
# between P7D (seven days) and P999D (999 days).
&quot;gracePeriod&quot;: &quot;A String&quot;, # 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).
&quot;purchaseType&quot;: &quot;A String&quot;, # The type of the product, e.g. a recurring subscription.
&quot;defaultLanguage&quot;: &quot;A String&quot;, # Default language of the localized data, as defined by BCP-47. e.g. &quot;en-US&quot;.
&quot;subscriptionPeriod&quot;: &quot;A String&quot;, # 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).
&quot;listings&quot;: { # List of localized title and description data. Map key is the language of
# the localized data, as defined by BCP-47, e.g. &quot;en-US&quot;.
&quot;a_key&quot;: { # Store listing of a single in-app product.
&quot;benefits&quot;: [ # Localized entitlement benefits for a subscription.
&quot;A String&quot;,
],
&quot;title&quot;: &quot;A String&quot;, # Title for the store listing.
&quot;description&quot;: &quot;A String&quot;, # Description for the store listing.
},
},
&quot;packageName&quot;: &quot;A String&quot;, # Package name of the parent app.
&quot;status&quot;: &quot;A String&quot;, # The status of the product, e.g. whether it&#x27;s active.
}</pre>
</div>
<div class="method">
<code class="details" id="list">list(packageName, startIndex=None, token=None, maxResults=None, x__xgafv=None)</code>
<pre>Lists all in-app products - both managed products and subscriptions.
Args:
packageName: string, Package name of the app. (required)
startIndex: integer, The index of the first element to return.
token: string, Pagination token. If empty, list starts at the first product.
maxResults: integer, How many results the list operation should return.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # Response listing all in-app products.
&quot;pageInfo&quot;: { # Information about the current page. # Information about the current page.
#
# List operations that supports paging return only one &quot;page&quot; of results. This
# protocol buffer message describes the page that has been returned.
&quot;resultPerPage&quot;: 42, # Maximum number of results returned in one page.
# ! The number of results included in the API response.
&quot;startIndex&quot;: 42, # Index of the first result returned in the current page.
&quot;totalResults&quot;: 42, # Total number of results available on the backend
# ! The total number of results in the result set.
},
&quot;kind&quot;: &quot;A String&quot;, # The kind of this response (&quot;androidpublisher#inappproductsListResponse&quot;).
&quot;inappproduct&quot;: [ # All in-app products.
{ # An in-app product. The resource for InappproductsService.
&quot;prices&quot;: { # 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.
&quot;a_key&quot;: { # Definition of a price, i.e. currency and units.
&quot;currency&quot;: &quot;A String&quot;, # 3 letter Currency code, as defined by ISO 4217.
# See java/com/google/common/money/CurrencyCode.java
&quot;priceMicros&quot;: &quot;A String&quot;, # Price in 1/million of the currency base unit, represented as a string.
},
},
&quot;sku&quot;: &quot;A String&quot;, # Stock-keeping-unit (SKU) of the product, unique within an app.
&quot;defaultPrice&quot;: { # Definition of a price, i.e. currency and units. # Default price. Cannot be zero, as in-app products are never free.
# Always in the developer&#x27;s Checkout merchant currency.
&quot;currency&quot;: &quot;A String&quot;, # 3 letter Currency code, as defined by ISO 4217.
# See java/com/google/common/money/CurrencyCode.java
&quot;priceMicros&quot;: &quot;A String&quot;, # Price in 1/million of the currency base unit, represented as a string.
},
&quot;trialPeriod&quot;: &quot;A String&quot;, # Trial period, specified in ISO 8601 format. Acceptable values are anything
# between P7D (seven days) and P999D (999 days).
&quot;gracePeriod&quot;: &quot;A String&quot;, # 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).
&quot;purchaseType&quot;: &quot;A String&quot;, # The type of the product, e.g. a recurring subscription.
&quot;defaultLanguage&quot;: &quot;A String&quot;, # Default language of the localized data, as defined by BCP-47. e.g. &quot;en-US&quot;.
&quot;subscriptionPeriod&quot;: &quot;A String&quot;, # 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).
&quot;listings&quot;: { # List of localized title and description data. Map key is the language of
# the localized data, as defined by BCP-47, e.g. &quot;en-US&quot;.
&quot;a_key&quot;: { # Store listing of a single in-app product.
&quot;benefits&quot;: [ # Localized entitlement benefits for a subscription.
&quot;A String&quot;,
],
&quot;title&quot;: &quot;A String&quot;, # Title for the store listing.
&quot;description&quot;: &quot;A String&quot;, # Description for the store listing.
},
},
&quot;packageName&quot;: &quot;A String&quot;, # Package name of the parent app.
&quot;status&quot;: &quot;A String&quot;, # The status of the product, e.g. whether it&#x27;s active.
},
],
&quot;tokenPagination&quot;: { # Pagination information returned by a List operation when token pagination # Pagination token, to handle a number of products that is over one page.
# is enabled.
#
# List operations that supports paging return only one &quot;page&quot; of results. This
# protocol buffer message describes the page that has been returned.
#
# When using token pagination, clients should use the next/previous token
# to get another page of the result. The presence or absence of next/previous
# token indicates whether a next/previous page is available and provides a
# mean of accessing this page. ListRequest.page_token should be set to either
# next_page_token or previous_page_token to access another page.
&quot;previousPageToken&quot;: &quot;A String&quot;,
&quot;nextPageToken&quot;: &quot;A String&quot;, # Tokens to pass to the standard list field &#x27;page_token&#x27;. Whenever available,
# tokens are preferred over manipulating start_index.
},
}</pre>
</div>
<div class="method">
<code class="details" id="patch">patch(packageName, sku, body=None, autoConvertMissingPrices=None, x__xgafv=None)</code>
<pre>Patches an in-app product (i.e. a managed product or a subscriptions).
Args:
packageName: string, Package name of the app. (required)
sku: string, Unique identifier for the in-app product. (required)
body: object, The request body.
The object takes the form of:
{ # An in-app product. The resource for InappproductsService.
&quot;prices&quot;: { # 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.
&quot;a_key&quot;: { # Definition of a price, i.e. currency and units.
&quot;currency&quot;: &quot;A String&quot;, # 3 letter Currency code, as defined by ISO 4217.
# See java/com/google/common/money/CurrencyCode.java
&quot;priceMicros&quot;: &quot;A String&quot;, # Price in 1/million of the currency base unit, represented as a string.
},
},
&quot;sku&quot;: &quot;A String&quot;, # Stock-keeping-unit (SKU) of the product, unique within an app.
&quot;defaultPrice&quot;: { # Definition of a price, i.e. currency and units. # Default price. Cannot be zero, as in-app products are never free.
# Always in the developer&#x27;s Checkout merchant currency.
&quot;currency&quot;: &quot;A String&quot;, # 3 letter Currency code, as defined by ISO 4217.
# See java/com/google/common/money/CurrencyCode.java
&quot;priceMicros&quot;: &quot;A String&quot;, # Price in 1/million of the currency base unit, represented as a string.
},
&quot;trialPeriod&quot;: &quot;A String&quot;, # Trial period, specified in ISO 8601 format. Acceptable values are anything
# between P7D (seven days) and P999D (999 days).
&quot;gracePeriod&quot;: &quot;A String&quot;, # 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).
&quot;purchaseType&quot;: &quot;A String&quot;, # The type of the product, e.g. a recurring subscription.
&quot;defaultLanguage&quot;: &quot;A String&quot;, # Default language of the localized data, as defined by BCP-47. e.g. &quot;en-US&quot;.
&quot;subscriptionPeriod&quot;: &quot;A String&quot;, # 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).
&quot;listings&quot;: { # List of localized title and description data. Map key is the language of
# the localized data, as defined by BCP-47, e.g. &quot;en-US&quot;.
&quot;a_key&quot;: { # Store listing of a single in-app product.
&quot;benefits&quot;: [ # Localized entitlement benefits for a subscription.
&quot;A String&quot;,
],
&quot;title&quot;: &quot;A String&quot;, # Title for the store listing.
&quot;description&quot;: &quot;A String&quot;, # Description for the store listing.
},
},
&quot;packageName&quot;: &quot;A String&quot;, # Package name of the parent app.
&quot;status&quot;: &quot;A String&quot;, # The status of the product, e.g. whether it&#x27;s active.
}
autoConvertMissingPrices: boolean, If true the prices for all regions targeted by the parent app that don&#x27;t
have a price specified for this in-app product will be auto converted to
the target currency based on the default price. Defaults to false.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # An in-app product. The resource for InappproductsService.
&quot;prices&quot;: { # 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.
&quot;a_key&quot;: { # Definition of a price, i.e. currency and units.
&quot;currency&quot;: &quot;A String&quot;, # 3 letter Currency code, as defined by ISO 4217.
# See java/com/google/common/money/CurrencyCode.java
&quot;priceMicros&quot;: &quot;A String&quot;, # Price in 1/million of the currency base unit, represented as a string.
},
},
&quot;sku&quot;: &quot;A String&quot;, # Stock-keeping-unit (SKU) of the product, unique within an app.
&quot;defaultPrice&quot;: { # Definition of a price, i.e. currency and units. # Default price. Cannot be zero, as in-app products are never free.
# Always in the developer&#x27;s Checkout merchant currency.
&quot;currency&quot;: &quot;A String&quot;, # 3 letter Currency code, as defined by ISO 4217.
# See java/com/google/common/money/CurrencyCode.java
&quot;priceMicros&quot;: &quot;A String&quot;, # Price in 1/million of the currency base unit, represented as a string.
},
&quot;trialPeriod&quot;: &quot;A String&quot;, # Trial period, specified in ISO 8601 format. Acceptable values are anything
# between P7D (seven days) and P999D (999 days).
&quot;gracePeriod&quot;: &quot;A String&quot;, # 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).
&quot;purchaseType&quot;: &quot;A String&quot;, # The type of the product, e.g. a recurring subscription.
&quot;defaultLanguage&quot;: &quot;A String&quot;, # Default language of the localized data, as defined by BCP-47. e.g. &quot;en-US&quot;.
&quot;subscriptionPeriod&quot;: &quot;A String&quot;, # 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).
&quot;listings&quot;: { # List of localized title and description data. Map key is the language of
# the localized data, as defined by BCP-47, e.g. &quot;en-US&quot;.
&quot;a_key&quot;: { # Store listing of a single in-app product.
&quot;benefits&quot;: [ # Localized entitlement benefits for a subscription.
&quot;A String&quot;,
],
&quot;title&quot;: &quot;A String&quot;, # Title for the store listing.
&quot;description&quot;: &quot;A String&quot;, # Description for the store listing.
},
},
&quot;packageName&quot;: &quot;A String&quot;, # Package name of the parent app.
&quot;status&quot;: &quot;A String&quot;, # The status of the product, e.g. whether it&#x27;s active.
}</pre>
</div>
<div class="method">
<code class="details" id="update">update(packageName, sku, body=None, autoConvertMissingPrices=None, x__xgafv=None)</code>
<pre>Updates an in-app product (i.e. a managed product or a subscriptions).
Args:
packageName: string, Package name of the app. (required)
sku: string, Unique identifier for the in-app product. (required)
body: object, The request body.
The object takes the form of:
{ # An in-app product. The resource for InappproductsService.
&quot;prices&quot;: { # 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.
&quot;a_key&quot;: { # Definition of a price, i.e. currency and units.
&quot;currency&quot;: &quot;A String&quot;, # 3 letter Currency code, as defined by ISO 4217.
# See java/com/google/common/money/CurrencyCode.java
&quot;priceMicros&quot;: &quot;A String&quot;, # Price in 1/million of the currency base unit, represented as a string.
},
},
&quot;sku&quot;: &quot;A String&quot;, # Stock-keeping-unit (SKU) of the product, unique within an app.
&quot;defaultPrice&quot;: { # Definition of a price, i.e. currency and units. # Default price. Cannot be zero, as in-app products are never free.
# Always in the developer&#x27;s Checkout merchant currency.
&quot;currency&quot;: &quot;A String&quot;, # 3 letter Currency code, as defined by ISO 4217.
# See java/com/google/common/money/CurrencyCode.java
&quot;priceMicros&quot;: &quot;A String&quot;, # Price in 1/million of the currency base unit, represented as a string.
},
&quot;trialPeriod&quot;: &quot;A String&quot;, # Trial period, specified in ISO 8601 format. Acceptable values are anything
# between P7D (seven days) and P999D (999 days).
&quot;gracePeriod&quot;: &quot;A String&quot;, # 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).
&quot;purchaseType&quot;: &quot;A String&quot;, # The type of the product, e.g. a recurring subscription.
&quot;defaultLanguage&quot;: &quot;A String&quot;, # Default language of the localized data, as defined by BCP-47. e.g. &quot;en-US&quot;.
&quot;subscriptionPeriod&quot;: &quot;A String&quot;, # 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).
&quot;listings&quot;: { # List of localized title and description data. Map key is the language of
# the localized data, as defined by BCP-47, e.g. &quot;en-US&quot;.
&quot;a_key&quot;: { # Store listing of a single in-app product.
&quot;benefits&quot;: [ # Localized entitlement benefits for a subscription.
&quot;A String&quot;,
],
&quot;title&quot;: &quot;A String&quot;, # Title for the store listing.
&quot;description&quot;: &quot;A String&quot;, # Description for the store listing.
},
},
&quot;packageName&quot;: &quot;A String&quot;, # Package name of the parent app.
&quot;status&quot;: &quot;A String&quot;, # The status of the product, e.g. whether it&#x27;s active.
}
autoConvertMissingPrices: boolean, If true the prices for all regions targeted by the parent app that don&#x27;t
have a price specified for this in-app product will be auto converted to
the target currency based on the default price. Defaults to false.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # An in-app product. The resource for InappproductsService.
&quot;prices&quot;: { # 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.
&quot;a_key&quot;: { # Definition of a price, i.e. currency and units.
&quot;currency&quot;: &quot;A String&quot;, # 3 letter Currency code, as defined by ISO 4217.
# See java/com/google/common/money/CurrencyCode.java
&quot;priceMicros&quot;: &quot;A String&quot;, # Price in 1/million of the currency base unit, represented as a string.
},
},
&quot;sku&quot;: &quot;A String&quot;, # Stock-keeping-unit (SKU) of the product, unique within an app.
&quot;defaultPrice&quot;: { # Definition of a price, i.e. currency and units. # Default price. Cannot be zero, as in-app products are never free.
# Always in the developer&#x27;s Checkout merchant currency.
&quot;currency&quot;: &quot;A String&quot;, # 3 letter Currency code, as defined by ISO 4217.
# See java/com/google/common/money/CurrencyCode.java
&quot;priceMicros&quot;: &quot;A String&quot;, # Price in 1/million of the currency base unit, represented as a string.
},
&quot;trialPeriod&quot;: &quot;A String&quot;, # Trial period, specified in ISO 8601 format. Acceptable values are anything
# between P7D (seven days) and P999D (999 days).
&quot;gracePeriod&quot;: &quot;A String&quot;, # 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).
&quot;purchaseType&quot;: &quot;A String&quot;, # The type of the product, e.g. a recurring subscription.
&quot;defaultLanguage&quot;: &quot;A String&quot;, # Default language of the localized data, as defined by BCP-47. e.g. &quot;en-US&quot;.
&quot;subscriptionPeriod&quot;: &quot;A String&quot;, # 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).
&quot;listings&quot;: { # List of localized title and description data. Map key is the language of
# the localized data, as defined by BCP-47, e.g. &quot;en-US&quot;.
&quot;a_key&quot;: { # Store listing of a single in-app product.
&quot;benefits&quot;: [ # Localized entitlement benefits for a subscription.
&quot;A String&quot;,
],
&quot;title&quot;: &quot;A String&quot;, # Title for the store listing.
&quot;description&quot;: &quot;A String&quot;, # Description for the store listing.
},
},
&quot;packageName&quot;: &quot;A String&quot;, # Package name of the parent app.
&quot;status&quot;: &quot;A String&quot;, # The status of the product, e.g. whether it&#x27;s active.
}</pre>
</div>
</body></html>