London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!

Interface IPurchaseOrder

Represents a purchase order in the system.

Namespace: EPiServer.Commerce.Order
Assembly: Mediachase.Commerce.dll
Version: 13.30.0
Syntax
public interface IPurchaseOrder : IOrderGroup, IExtendedProperties

Properties

ExpirationDate

Gets or sets the expiration date. Expiration date can be used for subscription type of orders.

Declaration
DateTime? ExpirationDate { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

OrderNumber

Gets or sets the order number.

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

ReturnForms

Gets the return forms.

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

Extension Methods