Class Order
The base Model encapsulating an order to purchase a cart.
Inherited Members
Namespace: UnityEngine.Purchasing
Assembly: Unity.Purchasing.dll
Syntax
public abstract class Order
Constructors
Order(ICart, IOrderInfo)
Constructs the base order object.
Declaration
protected Order(ICart cart, IOrderInfo info)
Parameters
| Type | Name | Description |
|---|---|---|
| ICart | cart | The cart ordered. |
| IOrderInfo | info | Additional information concerning this order. |
Properties
CartOrdered
The product ordered. Read only.
Declaration
public ICart CartOrdered { get; }
Property Value
| Type | Description |
|---|---|
| ICart |
Info
Additional information about the order
Declaration
public IOrderInfo Info { get; }
Property Value
| Type | Description |
|---|---|
| IOrderInfo |