ACHWithdrawalPendingTransfer
| Field | Type | Constraints |
|---|---|---|
id |
BigAutoField | PK |
amount |
DecimalField(7,2) | |
account |
FK → Account | |
transaction |
OneToOne → FoldCardTransaction |
Sample Queries (click to expand)
Get all records
ACHWithdrawalPendingTransfer.objects.all()
Get by ID
ACHWithdrawalPendingTransfer.objects.get(id=1)
With related Account
ACHWithdrawalPendingTransfer.objects.select_related("account")
Filter by account
ACHWithdrawalPendingTransfer.objects.filter(account_id=123)