IInAppStore
Overview
This interface allows you to pass purchase and subscription information to the Magify SDK. This interface is usually specific for each library that provides in-app purchasing feature. For example, you might have one implementation for Unity Purchasing and another for your custom library, and using IMinimalInAppStore implementation depends on which liobrary is used in the application.
IInAppStore API
Used delegates
ProductFetchedDelegate
delegate void ProductFetchedDelegate(
string productId
)
This delegate describes a product fetch contract that uses the Magify SDK. The caller must pass the ID of the product that was fetched.
ProductFetchFailedDelegate
delegate void ProductFetchFailedDelegate(
string productId,
ProductObtainFailReason reason
)
This delegate describes a product fetch fail contract that uses the Magify SDK. The caller must pass the ID of the product that was failed to fetch and reson of the fail.
PurchaseFailedDelegate
delegate void PurchaseFailedDelegate(
string productId,
ProductObtainFailReason reason
)
This delegate describes a product purchase fail contract that uses the Magify SDK. The caller must pass the ID of the product that was failed to purchase and reson of the fail.
Events
OnProductFetched
event ProductFetchedDelegate OnProductFetched;
Your implementation should invoke this event when store fetched some.
OnProductFetchFailed
event ProductFetchFailedDelegate OnProductFetchFailed;
Your implementation should invoke this event when store fetched some.
OnPurchaseFailed
event PurchaseFailedDelegate OnPurchaseFailed;
Your implementation should invoke this event when purshase of some product was failed.
Methods
IsProductReady
bool IsProductReady(ProductDef product);
This method must return true if product is ready-to-purchase. For example, when it was fetched and in-app store is available.
LoadProducts
void LoadProducts(IEnumerable<ProductDef> products);
This method must load (fetch) all products to make them ready-to-purchase.
Purchase
void Purchase(ProductDef product);
This method must initiate purchasing logic.