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: 10.8.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

Payments

Gets the payments on the order form.

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

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