Skip to main content

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;
}

constructor

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

customer

property