-
Notifications
You must be signed in to change notification settings - Fork 1
customer.Interface.Customer
tgreyuk edited this page Mar 16, 2025
·
8 revisions
github-wiki-example / customer / Customer
Defined in: customer.ts:24
Interface representing a customer. Stores comprehensive details about a customer necessary for various business operations.
| Property | Type | Description | Defined in |
|---|---|---|---|
address
|
string |
The physical address of the customer, used for shipping and billing purposes. | customer.ts:32 |
customerId
|
string |
A unique identifier for the customer, essential for tracking and customer management. | customer.ts:26 |
email
|
string |
The primary email address of the customer, used for communication and digital receipts. | customer.ts:30 |
name
|
string |
The full name of the customer, used for personalization and identification. | customer.ts:28 |
type
|
CustomerType |
The classification of the customer, which can affect the level of service and pricing they receive. | customer.ts:34 |