ProductDetailsResponseListener
public
interface
ProductDetailsResponseListener
com.android.billingclient.api.ProductDetailsResponseListener |
Listener to a result of product details query.
Summary
Public methods | |
---|---|
abstract
void
|
onProductDetailsResponse(BillingResult billingResult, List<ProductDetails> productDetailsList)
Called to notify that query product details operation has finished. |
Public methods
onProductDetailsResponse
public abstract void onProductDetailsResponse (BillingResult billingResult, List<ProductDetails> productDetailsList)
Called to notify that query product details operation has finished.
Parameters | |
---|---|
billingResult |
BillingResult : Result of the query. Set to BillingClient.BillingResponseCode.ITEM_UNAVAILABLE if no product details are found. |
productDetailsList |
List : List of ProductDetails .
|