🚨 Announcing Vendure v2 Beta

CustomerHistoryEntry

CustomerHistoryEntry

Represents an event in the history of a particular Customer.

Signature

class CustomerHistoryEntry extends HistoryEntry {
  constructor(input: DeepPartial<CustomerHistoryEntry>)
  @ManyToOne(type => Customer, { onDelete: 'CASCADE' })
    customer: Customer;
}

Extends

Members

constructor

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

customer

property
type:
Customer