Class ProductInfo
Describes parameters of the product returned by QueryInventory.
Inherited Members
Namespace: UnityEngine.UDP
Assembly: UDP.dll
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 |
---|---|
bool |
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 |
---|---|
long |
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 |