Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more

Interface IOrderForm

Information about an order form.

Inherited Members
Namespace: EPiServer.Commerce.Order
Assembly: Mediachase.Commerce.dll
Version: 14.26.0
Syntax
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.Decimal

CapturedPaymentTotal

Gets or sets the amount that has been transfered.

Declaration
Decimal CapturedPaymentTotal { get; set; }
Property Value
Type Description
System.Decimal

CouponCodes

Gets the supplied coupon codes.

Declaration
ICollection<string> CouponCodes { get; }
Property Value
Type Description
System.Collections.Generic.ICollection<System.String>

HandlingTotal

Gets or sets the handling total.

Declaration
Decimal HandlingTotal { get; set; }
Property Value
Type Description
System.Decimal

Name

Gets or sets the name.

Declaration
string Name { get; set; }
Property Value
Type Description
System.String

OrderFormId

Gets the unique identity for the order form.

Declaration
int OrderFormId { get; }
Property Value
Type Description
System.Int32

ParentOrderGroup

Gets the parent order group.

Declaration
IOrderGroup ParentOrderGroup { get; }
Property Value
Type Description
IOrderGroup

Payments

Gets the payments on the order form.

Declaration
ICollection<IPayment> Payments { get; }
Property Value
Type Description
System.Collections.Generic.ICollection<IPayment>

PricesIncludeTax

Gets the setting of including tax in price from the order group.

Declaration
bool PricesIncludeTax { get; }
Property Value
Type Description
System.Boolean

Promotions

Gets the promotions.

Declaration
IList<PromotionInformation> Promotions { get; }
Property Value
Type Description
System.Collections.Generic.IList<PromotionInformation>

Shipments

Gets the shipments on the order form.

Declaration
ICollection<IShipment> Shipments { get; }
Property Value
Type Description
System.Collections.Generic.ICollection<IShipment>

Extension Methods