We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Internal
1 parent e7db283 commit 17c0aa5Copy full SHA for 17c0aa5
4 files changed
src/lithic/resources/financial_accounts/financial_transactions.py
@@ -87,7 +87,7 @@ def list(
87
financial_account_token: str,
88
*,
89
begin: Union[str, datetime] | NotGiven = NOT_GIVEN,
90
- category: Literal["ACH", "CARD", "TRANSFER"] | NotGiven = NOT_GIVEN,
+ category: Literal["ACH", "CARD", "INTERNAL", "TRANSFER"] | NotGiven = NOT_GIVEN,
91
end: Union[str, datetime] | NotGiven = NOT_GIVEN,
92
ending_before: str | NotGiven = NOT_GIVEN,
93
result: Literal["APPROVED", "DECLINED"] | NotGiven = NOT_GIVEN,
@@ -224,7 +224,7 @@ def list(
224
225
226
227
228
229
230
src/lithic/types/financial_accounts/financial_transaction_list_params.py
@@ -18,7 +18,7 @@ class FinancialTransactionListParams(TypedDict, total=False):
18
Only entries created after the specified time will be included. UTC time zone.
19
"""
20
21
- category: Literal["ACH", "CARD", "TRANSFER"]
+ category: Literal["ACH", "CARD", "INTERNAL", "TRANSFER"]
22
"""Financial Transaction category to be returned."""
23
24
end: Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]
src/lithic/types/financial_accounts/statements/statement_line_items.py
@@ -93,6 +93,7 @@ class Data(BaseModel):
"FINANCIAL_CREDIT_AUTHORIZATION",
94
"INTEREST",
95
"INTEREST_REVERSAL",
96
+ "INTERNAL_ADJUSTMENT",
97
"LATE_PAYMENT",
98
"LATE_PAYMENT_REVERSAL",
99
"PROVISIONAL_CREDIT",
src/lithic/types/financial_transaction.py
@@ -83,6 +83,7 @@ class Event(BaseModel):
83
84
85
86
@@ -101,11 +102,12 @@ class FinancialTransaction(BaseModel):
101
102
token: str
103
"""Globally unique identifier."""
104
105
106
"""Status types:
107
108
- `CARD` - Issuing card transaction.
109
- `ACH` - Transaction over ACH.
110
+ - `INTERNAL` - Transaction for internal adjustment.
111
- `TRANSFER` - Internal transfer of funds between financial accounts in your
112
program.
113
0 commit comments