Interface IBillingPayment
Provides an interface to access purchase request information.
Namespace: VoxelBusters.EssentialKit
Assembly: cs.temp.dll.dll
Syntax
public interface IBillingPayment
Properties
ProductId
The string that identifies the product within Unity environment. (read-only)
Declaration
string ProductId { get; }
Property Value
Type | Description |
---|---|
System.String |
ProductPlatformId
The string that identifies the product registered in the Store (platform specific). (read-only)
Declaration
string ProductPlatformId { get; }
Property Value
Type | Description |
---|---|
System.String |
Quantity
The number of units to be purchased. This should be a non-zero number.
Declaration
int Quantity { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Tag
An optional user information provided by the developer at the time of initiating purchase.
Declaration
string Tag { get; }
Property Value
Type | Description |
---|---|
System.String |