-
Notifications
You must be signed in to change notification settings - Fork 1
billing.Interface.BillingReceipt
tgreyuk edited this page Mar 16, 2025
·
8 revisions
github-wiki-example / billing / BillingReceipt
Defined in: billing.ts:80
Interface representing a billing receipt. Provides a record of the transaction for both the customer and the business.
| Property | Type | Description | Defined in |
|---|---|---|---|
receiptId
|
string |
Unique identifier for the receipt. This ID is crucial for referencing and tracking the receipt in financial records and customer queries. | billing.ts:85 |
timestamp
|
number |
The timestamp (in UNIX epoch time) when the receipt was generated. Provides a precise record of when the transaction was finalized and acknowledged. | billing.ts:97 |
transaction
|
BillingTransaction |
The transaction details associated with this receipt. Links the receipt to the actual transaction that took place. | billing.ts:91 |