Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/lithic/types/financial_transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,14 +144,15 @@ class FinancialTransaction(BaseModel):
(e.g., cents), including any acquirer fees. This may change over time.
"""

status: Literal["DECLINED", "EXPIRED", "PENDING", "SETTLED", "VOIDED"]
status: Literal["DECLINED", "EXPIRED", "PENDING", "RETURNED", "SETTLED", "VOIDED"]
"""Status types:

- `DECLINED` - The card transaction was declined.
- `EXPIRED` - Lithic reversed the card authorization as it has passed its
expiration time.
- `PENDING` - Authorization is pending completion from the merchant or pending
release from ACH hold period
- `RETURNED` - The financial transaction has been returned.
- `SETTLED` - The financial transaction is completed.
- `VOIDED` - The merchant has voided the previously pending card authorization.
"""
Expand Down