Typedef
| Static Public Summary | ||
| public |
An address |
|
| public |
A customer |
|
| public |
An item which is part of an order |
|
| public |
An order |
|
| public |
A product |
|
Static Public
public address: Object source
An address
Properties:
| Name | Type | Attribute | Description |
| streetNumber | number | the alphanumeric indicator for a property |
|
| streetName | string | the name of the street on which the customer's property is |
|
| city | string | the city in which the customer's property is |
|
| postcode | number | the government postal code for the area in which the customer's property resides |
public customer: Object source
A customer
Properties:
| Name | Type | Attribute | Description |
| firstName | string | the first given name of the customer |
|
| lastName | string | the surname of the customer |
|
| address | address | the customer's address for billing and delivery purposes |
|
| orders | order[] | an array of orders the customer has made |
|
| customerNotes | string | a string containing any notes about the customer |