CustomerHistoryEntry
CustomerHistoryEntry
Represents an event in the history of a particular Customer.
Signature
class CustomerHistoryEntry extends HistoryEntry {
constructor(input: DeepPartial<CustomerHistoryEntry>)
@Index()
@ManyToOne(type => Customer, { onDelete: 'CASCADE' })
customer: Customer;
}
- Extends:
HistoryEntry
constructor
method
(input: DeepPartial<CustomerHistoryEntry>) => CustomerHistoryEntry
customer
property