🚨 Announcing Vendure v2 Beta

OrderHistoryEntry

OrderHistoryEntry

Represents an event in the history of a particular Order.

Signature

class OrderHistoryEntry extends HistoryEntry {
  constructor(input: DeepPartial<OrderHistoryEntry>)
  @ManyToOne(type => Order, { onDelete: 'CASCADE' })
    order: Order;
}

Extends

Members

constructor

method
type:
(input: DeepPartial<OrderHistoryEntry>) => OrderHistoryEntry

order

property
type:
Order