# Print output for @column tags ?>
public
static
class
BillingFlowParams.Builder
extends Object
| java.lang.Object | |
| ↳ | com.android.billingclient.api.BillingFlowParams.Builder |
Helps to construct BillingFlowParams that are used to initiate a purchase flow.
Public methods | |
|---|---|
BillingFlowParams
|
build()
Returns |
BillingFlowParams.Builder
|
setObfuscatedAccountId(String obfuscatedAccountid)
Specifies an optional obfuscated string that is uniquely associated with the user's account in your app. |
BillingFlowParams.Builder
|
setObfuscatedProfileId(String obfuscatedProfileId)
Specifies an optional obfuscated string that is uniquely associated with the user's profile in your app. |
BillingFlowParams.Builder
|
setOldSku(String oldSku, String purchaseToken)
Specifies the SKU and purchase token that the user is upgrading or downgrading from. |
BillingFlowParams.Builder
|
setReplaceSkusProrationMode(int replaceSkusProrationMode)
Specifies the mode of proration during subscription upgrade/downgrade. |
BillingFlowParams.Builder
|
setSkuDetails(SkuDetails skuDetails)
Specifies the |
BillingFlowParams.Builder
|
setVrPurchaseFlow(boolean isVrPurchaseFlow)
Specifies whether to launch a VR purchase flow. |
Inherited methods | |
|---|---|
public BillingFlowParams build ()
Returns BillingFlowParams reference to initiate a purchase flow.
| Returns | |
|---|---|
BillingFlowParams |
|
public BillingFlowParams.Builder setObfuscatedAccountId (String obfuscatedAccountid)
Specifies an optional obfuscated string that is uniquely associated with the user's account in your app.
If you pass this value, Google Play can use it to detect irregular activity, such as many devices making purchases on the same account in a short period of time. Do not use this field to store any Personally Identifiable Information (PII) such as emails in cleartext. Attempting to store PII in this field will result in purchases being blocked. Google Play recommends that you use either encryption or a one-way hash to generate an obfuscated identifier to send to Google Play.
You can also retrieve this identifier via the Purchase object.
This identifier is limited to 64 characters.
Optional:
| Parameters | |
|---|---|
obfuscatedAccountid |
String |
| Returns | |
|---|---|
BillingFlowParams.Builder |
|
public BillingFlowParams.Builder setObfuscatedProfileId (String obfuscatedProfileId)
Specifies an optional obfuscated string that is uniquely associated with the user's profile in your app.
Some applications allow users to have multiple profiles within a single account. Use this
method to send the user's profile identifier to Google. Setting this field requests the
user's obfuscated account id to be pass via setObfuscatedAccountId(String).
If you pass this value, Google Play can use it to detect irregular activity, such as many devices making purchases on the same account in a short period of time. Do not use this field to store any Personally Identifiable Information (PII) such as emails in cleartext. Attempting to store PII in this field will result in purchases being blocked. Google Play recommends that you use either encryption or a one-way hash to generate an obfuscated identifier to send to Google Play.
You can also retrieve this identifier via the Purchase object.
This identifier is limited to 64 characters.
Optional:
| Parameters | |
|---|---|
obfuscatedProfileId |
String |
| Returns | |
|---|---|
BillingFlowParams.Builder |
|
public BillingFlowParams.Builder setOldSku (String oldSku, String purchaseToken)
Specifies the SKU and purchase token that the user is upgrading or downgrading from. This will disambiguate situations where multiple accounts on the device own the same SKU.
Mandatory:
| Parameters | |
|---|---|
oldSku |
String |
purchaseToken |
String |
| Returns | |
|---|---|
BillingFlowParams.Builder |
|
public BillingFlowParams.Builder setReplaceSkusProrationMode (int replaceSkusProrationMode)
Specifies the mode of proration during subscription upgrade/downgrade. This value will only be effective if the old SKU is also set.
| Parameters | |
|---|---|
replaceSkusProrationMode |
int: One of the BillingFlowParams.ProrationMode constants. |
| Returns | |
|---|---|
BillingFlowParams.Builder |
|
public BillingFlowParams.Builder setSkuDetails (SkuDetails skuDetails)
Specifies the SkuDetails of the item being purchased.
Mandatory:
| Parameters | |
|---|---|
skuDetails |
SkuDetails |
| Returns | |
|---|---|
BillingFlowParams.Builder |
|
public BillingFlowParams.Builder setVrPurchaseFlow (boolean isVrPurchaseFlow)
Specifies whether to launch a VR purchase flow.
Optional:
| Parameters | |
|---|---|
isVrPurchaseFlow |
boolean |
| Returns | |
|---|---|
BillingFlowParams.Builder |
|