Skip to main content

OrderHistoryEntry

OrderHistoryEntry

Represents an event in the history of a particular Order.

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

constructor

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

order

property