Interface IOrderForm
Information about an order form.
Inherited Members
Namespace: EPiServer.Commerce.Order
Assembly: Mediachase.Commerce.dll
Version: 10.8.0Syntax
public interface IOrderForm : IExtendedProperties
Properties
AuthorizedPaymentTotal
Gets or sets the amount that has is on hold, waiting for being captured.
Declaration
decimal AuthorizedPaymentTotal { get; set; }
Property Value
Type | Description |
---|---|
System. |
CapturedPaymentTotal
Gets or sets the amount that has been transfered.
Declaration
decimal CapturedPaymentTotal { get; set; }
Property Value
Type | Description |
---|---|
System. |
CouponCodes
Gets the supplied coupon codes.
Declaration
ICollection<string> CouponCodes { get; }
Property Value
Type | Description |
---|---|
System. |
HandlingTotal
Gets or sets the handling total.
Declaration
decimal HandlingTotal { get; set; }
Property Value
Type | Description |
---|---|
System. |
Name
Gets or sets the name.
Declaration
string Name { get; set; }
Property Value
Type | Description |
---|---|
System. |
OrderFormId
Gets the unique identity for the order form.
Declaration
int OrderFormId { get; }
Property Value
Type | Description |
---|---|
System. |
Payments
Gets the payments on the order form.
Declaration
ICollection<IPayment> Payments { get; }
Property Value
Type | Description |
---|---|
System. |
Promotions
Gets the promotions.
Declaration
IList<PromotionInformation> Promotions { get; }
Property Value
Type | Description |
---|---|
System. |
Shipments
Gets the shipments on the order form.
Declaration
ICollection<IShipment> Shipments { get; }
Property Value
Type | Description |
---|---|
System. |