A public readonly property.
A public property that can be reassigned.
An optional protected property.
A property defined on the subclass.
Another property defined on the subclass.
A getter that prepends a number sign to the private _nextOrderNumber
property.
A setter that takes in either a string or a number and sets the private
_nextOrderNumber
property.
A public method. To be called when an order is placed for this customer.
A public method that's defined using an arrow function.
TypeDoc knows to document this as a method rather than a property.
An example of overriding a protected method.
A DeliveryCustomer
can only have a preferred courier if its
subscription type is enterprise.
The constructor of the DeliveryCustomer
class.
the customer's database ID
the customer's name
the next number to use when this customer places an order
whether this customer has a basic or enterprise subscription
Generated using TypeDoc
A class that extends
Customer
.