diff options
author | Andrew Solovay <asolovay@google.com> | 2014-08-19 05:52:57 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-08-19 05:52:57 +0000 |
commit | fc6b01f463c96abfdbde20890c03cec0c5c571ba (patch) | |
tree | f5a6fee72bcaa8879fe07854be014bacb49320ff /docs | |
parent | 67d666f60422454e64885fecc78c1f5c0a0477e4 (diff) | |
parent | eb60d0f1937392351ef81f10b651749bd47f7898 (diff) | |
download | frameworks_base-fc6b01f463c96abfdbde20890c03cec0c5c571ba.zip frameworks_base-fc6b01f463c96abfdbde20890c03cec0c5c571ba.tar.gz frameworks_base-fc6b01f463c96abfdbde20890c03cec0c5c571ba.tar.bz2 |
am eb60d0f1: am 94174ff7: am 8319455a: Merge "docs: Documented new fields returned by getSkuDetails()." into klp-modular-docs
* commit 'eb60d0f1937392351ef81f10b651749bd47f7898':
docs: Documented new fields returned by getSkuDetails().
Diffstat (limited to 'docs')
-rw-r--r-- | docs/html/google/play/billing/billing_reference.jd | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/docs/html/google/play/billing/billing_reference.jd b/docs/html/google/play/billing/billing_reference.jd index e168d70..4f5e65c 100644 --- a/docs/html/google/play/billing/billing_reference.jd +++ b/docs/html/google/play/billing/billing_reference.jd @@ -102,15 +102,28 @@ parent.link=index.html </tr> <tr> <td>{@code type}</td> - <td>Value must be “inapp” for an in-app product or "subs" for + <td>Value must be “inapp” for an in-app product or "subs" for subscriptions.</td> </tr> <tr> <td>{@code price}</td> - <td>Formatted price of the item, including its currency sign. The price + <td>Formatted price of the item, including its currency sign. The price does not include tax.</td> </tr> <tr> + <td>{@code price_amount_micros}</td> + <td>Price in micro-units, where 1,000,000 micro-units equal one unit of the + currency. For example, if {@code price} is {@code "€7.99"}, {@code + price_amount_micros} is {@code "7990000"}.</td> + </tr> + <tr> + <td>{@code price_currency_code}</td> + <td><a href="http://en.wikipedia.org/wiki/ISO_4217#Active_codes">ISO 4217 + currency code</a> for {@code price}. For example, if {@code price} is + specified in British pounds sterling, {@code price_currency_code} is {@code + "GBP"}.</td> + </tr> + <tr> <td>{@code title}</td> <td>Title of the product.</td> </tr> |