Class ProductInfo
Describes parameters of the product returned by QueryInventory.
Inherited Members
Namespace: UnityEngine.UDP
Syntax
public class ProductInfo
Constructors
ProductInfo()
Declaration
public ProductInfo()
Properties
Consumable
Indicates whether or not the product is consumable.
Declaration
public bool Consumable { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
Currency
Currency of product.
Declaration
public string Currency { get; set; }
Property Value
Type | Description |
---|---|
String |
Description
Description of product.
Declaration
public string Description { get; set; }
Property Value
Type | Description |
---|---|
String |
ItemType
Type of product.
Declaration
public string ItemType { get; set; }
Property Value
Type | Description |
---|---|
String |
Price
Price of product.
Declaration
public string Price { get; set; }
Property Value
Type | Description |
---|---|
String |
PriceAmountMicros
Micro price of product, defined as price * 1000000.
Declaration
public long PriceAmountMicros { get; set; }
Property Value
Type | Description |
---|---|
Int64 |
ProductId
Unique ID of product.
Declaration
public string ProductId { get; set; }
Property Value
Type | Description |
---|---|
String |
Title
Product title.
Declaration
public string Title { get; set; }
Property Value
Type | Description |
---|---|
String |