Interface IOrderInfo
The model encapsulating additional information about an order.
Namespace: UnityEngine .Purchasing
Assembly: Unity.Purchasing.dll
Syntax
public interface IOrderInfo
Properties
Apple
Apple specific OrderInfo class
Declaration
IAppleOrderInfo Apple { get; }
Property Value
Type | Description |
---|---|
IApple |
PurchasedProductInfo
Additional information for purchased products found in a ConfirmedOrder
.
Declaration
List<IPurchasedProductInfo> PurchasedProductInfo { get; set; }
Property Value
Type | Description |
---|---|
List<IPurchased |
Receipt
The purchase receipt, in JSON format. Read only.
Consumable's Receipt
are not set between app restarts unless it is a pending order.
Once a consumable has been acknowledged (ConfirmOrder) the Receipt
is removed.
The receipt provided while on the Apple App Store will be the full receipt of every purchase so far.
Declaration
string Receipt { get; }
Property Value
Type | Description |
---|---|
string |
TransactionID
The transaction ID of the purchase. Read only.
Consumable's transactionID are not set between app restarts unless it is a pending order.
Once a consumable has been acknowledged (ConfirmOrder) the transactionID
is removed.
Declaration
string TransactionID { get; }
Property Value
Type | Description |
---|---|
string |