Try our conversational search powered by Generative AI!

Interface IPurchaseOrder

Represents a purchase order in the system.

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