-
Notifications
You must be signed in to change notification settings - Fork 3
customer.Interface.CustomerOrderHistory
tgreyuk edited this page Mar 16, 2025
·
8 revisions
github-wiki-example / customer / CustomerOrderHistory
Defined in: customer.ts:63
Interface representing a customer's order history. Useful for tracking past transactions and analyzing customer behavior.
Property | Type | Description | Defined in |
---|---|---|---|
orderDate
|
Date |
The date when the order was placed, important for historical data and analytics. | customer.ts:67 |
orderId
|
string |
Unique identifier for each order, crucial for order tracking and management. | customer.ts:65 |
totalAmount
|
number |
The total amount spent on the order, used for financial records and customer spending analysis. | customer.ts:69 |