public static enum CBAnalytics.CBIAPPurchaseInfo extends java.lang.Enum<CBAnalytics.CBIAPPurchaseInfo>
PRODUCT_ID : Product ID for the product.(It's unique Sku id assigned for every product ) PRODUCT_TITLE: Title of the product PRODUCT_DESCRIPTION: Description of the product PRODUCT_PRICE: Price of the product purchased. (Ex: "$0.99") PRODUCT_CURRENCY_CODE: Currency code of the product purchased (Example "USD" or "INR") GOOGLE_PURCHASE_DATA: Only applicable to Google Play purchases. You can get this value from the purchase object you receive from google play when you make the purchase. GOOGLE_PURCHASE_SIGNATURE: Only applicable to Google Play purchases. You can get this value from the purchase object you receive from google play when you make the purchase. AMAZON_PURCHASE_TOKEN: Only applicable to amazon purchases. Receipt is the 'purchase token' from the receipt object of the purchase you made through amazon. AMAZON_USER_ID: The User id associated during the product purchase. Only applicable to Amazon purchases.
Enum Constant and Description |
---|
AMAZON_PURCHASE_TOKEN |
AMAZON_USER_ID |
GOOGLE_PURCHASE_DATA |
GOOGLE_PURCHASE_SIGNATURE |
PRODUCT_CURRENCY_CODE |
PRODUCT_DESCRIPTION |
PRODUCT_ID |
PRODUCT_PRICE |
PRODUCT_TITLE |
Modifier and Type | Method and Description |
---|---|
static CBAnalytics.CBIAPPurchaseInfo |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CBAnalytics.CBIAPPurchaseInfo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CBAnalytics.CBIAPPurchaseInfo PRODUCT_ID
public static final CBAnalytics.CBIAPPurchaseInfo PRODUCT_TITLE
public static final CBAnalytics.CBIAPPurchaseInfo PRODUCT_DESCRIPTION
public static final CBAnalytics.CBIAPPurchaseInfo PRODUCT_PRICE
public static final CBAnalytics.CBIAPPurchaseInfo PRODUCT_CURRENCY_CODE
public static final CBAnalytics.CBIAPPurchaseInfo GOOGLE_PURCHASE_DATA
public static final CBAnalytics.CBIAPPurchaseInfo GOOGLE_PURCHASE_SIGNATURE
public static final CBAnalytics.CBIAPPurchaseInfo AMAZON_PURCHASE_TOKEN
public static final CBAnalytics.CBIAPPurchaseInfo AMAZON_USER_ID
public static CBAnalytics.CBIAPPurchaseInfo[] values()
for (CBAnalytics.CBIAPPurchaseInfo c : CBAnalytics.CBIAPPurchaseInfo.values()) System.out.println(c);
public static CBAnalytics.CBIAPPurchaseInfo valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null