Try our conversational search powered by Generative AI!

Interface IOrderForm

Information about an order form.

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

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