NotifyIAPComplete() public static method

public static NotifyIAPComplete ( string product_id, string trans_id, string currency_code, double price, int quantity ) : void
product_id string
trans_id string
currency_code string
price double
quantity int
return void
 private void OnVideoFinishedWithInfo(AdColonyAd ad)
 {
     ++onVideoFinishedWithInfoCounter;
     Debug.Log("On Video Finished With Info, ad Played: " + ad.toString());
     if (ad.iapEnabled)
     {
         AdColony.NotifyIAPComplete("ProductID", "TransactionID", null, 0, 1);
     }
     Resume();
 }