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' }) @Index()
@ManyToOne(type => Customer, { onDelete: 'CASCADE' })
customer: Customer;
}
Extends
Members
constructor
method
type:
(input: DeepPartial<CustomerHistoryEntry>) => CustomerHistoryEntry
customer
property
type:
Customer