19 lines
512 B
Python
19 lines
512 B
Python
![]() |
from validation import FromAccount
|
||
|
|
||
|
|
||
|
account_data = FromAccount(
|
||
|
account_name="Astrid Janneke Willems",
|
||
|
account_holder_name="Astrid Janneke",
|
||
|
account_holder_surname="Willems",
|
||
|
passport_number="HW8642009",
|
||
|
reference_currency="EUR",
|
||
|
other_currency=None,
|
||
|
building_number="18",
|
||
|
street_name="Lijnbaan",
|
||
|
postal_code="7523 05",
|
||
|
city="Assen",
|
||
|
country="Netherlands",
|
||
|
name="Astrid Janneke Willems",
|
||
|
phone_number="+31 06 34579996",
|
||
|
email="astrid.willems@upcmail.nl"
|
||
|
)
|