IMinimalInAppStore

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.

IMinimalInAppStore API

Used delegates

PurchaseFinishedDelegate

public delegate void PurchaseFinishedDelegate(
    string productId,
    PurchaseInfo purchaseInfo
)

Events

OnPurchaseFinished

[NotNull]
event PurchaseFinishedDelegate OnPurchaseFinished;

Your implementation should invoke this event when purchase is finished.

Methods

LoadSubscriptionInfo

[CanBeNull]
SubscriptionInfo LoadSubscriptionInfo(string productId);

This method's implementation must return information about current active subscription if exist.

  • You should return information about current active subscription.
  • You should return null if subscription is expired or not bought.

Related articles

MagifyManager․Storage

Network

MagifyConfig

LimitedTimeOfferBase

CustomCreative

ICampaign