Class PurchaseInfo
Represents an in-app billing purchase.
Inherited Members
Namespace: UnityEngine.UDP
Syntax
public class PurchaseInfo
Constructors
PurchaseInfo()
Declaration
public PurchaseInfo()
Properties
DeveloperPayload
Any string provided by the developer. UDP will pass this to PartnerStore in the ‘Purchase’ method.
Declaration
public string DeveloperPayload { get; set; }
Property Value
Type | Description |
---|---|
String |
GameOrderId
Unique order ID for the transaction.
Declaration
public string GameOrderId { get; set; }
Property Value
Type | Description |
---|---|
String |
ItemType
Type of product purchased.
Declaration
public string ItemType { get; set; }
Property Value
Type | Description |
---|---|
String |
OrderQueryToken
String containing the signature of the purchase data that was signed with the developer's private key. You can use this to query order status from the UDP server.
Declaration
public string OrderQueryToken { get; set; }
Property Value
Type | Description |
---|---|
String |
ProductId
Unique ID of product.
Declaration
public string ProductId { get; set; }
Property Value
Type | Description |
---|---|
String |
StorePurchaseJsonString
JSON string containing additional information that the store provides to UDP.
Declaration
public string StorePurchaseJsonString { get; set; }
Property Value
Type | Description |
---|---|
String |