package com.unity3d.services.store.gpbl.bridges.billingclient; import com.unity3d.services.store.gpbl.BillingResultResponseCode; import com.unity3d.services.store.gpbl.bridges.SkuDetailsParamsBridge; import com.unity3d.services.store.gpbl.proxies.BillingClientStateListenerProxy; import com.unity3d.services.store.gpbl.proxies.PurchaseHistoryResponseListenerProxy; import com.unity3d.services.store.gpbl.proxies.PurchasesResponseListenerProxy; import com.unity3d.services.store.gpbl.proxies.SkuDetailsResponseListenerProxy; /* loaded from: classes2.dex */ public interface IBillingClient { BillingResultResponseCode isFeatureSupported(String str); boolean isReady(); void queryPurchaseHistoryAsync(String str, PurchaseHistoryResponseListenerProxy purchaseHistoryResponseListenerProxy); void queryPurchasesAsync(String str, PurchasesResponseListenerProxy purchasesResponseListenerProxy); void querySkuDetailsAsync(SkuDetailsParamsBridge skuDetailsParamsBridge, SkuDetailsResponseListenerProxy skuDetailsResponseListenerProxy); void startConnection(BillingClientStateListenerProxy billingClientStateListenerProxy); }