Bank Services tested and completed
This commit is contained in:
17
BankServices/WriterService/model.py
Normal file
17
BankServices/WriterService/model.py
Normal file
@@ -0,0 +1,17 @@
|
||||
from typing import Optional
|
||||
from pydantic import BaseModel
|
||||
|
||||
|
||||
class BankReceive(BaseModel):
|
||||
import_file_name: str
|
||||
iban: str
|
||||
bank_date: str
|
||||
channel_branch: str
|
||||
currency: Optional[str] = "TL"
|
||||
currency_value: float
|
||||
bank_balance: float
|
||||
additional_balance: float
|
||||
process_name: str
|
||||
process_type: str
|
||||
process_comment: str
|
||||
bank_reference_code: str
|
||||
Reference in New Issue
Block a user