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;
}
- Extends: HistoryEntry