Name |
Type |
Description |
Notes |
id |
int |
|
[optional] [readonly] |
name |
str |
|
|
account_number |
str |
|
|
account_number_iban |
str |
|
[optional] |
swift |
str |
|
[optional] |
currency |
Currency |
|
|
need_qr |
bool |
|
[optional] [default to False] |
from clientapi_billingo.models.bank_account import BankAccount
# TODO update the JSON string below
json = "{}"
# create an instance of BankAccount from a JSON string
bank_account_instance = BankAccount.from_json(json)
# print the JSON string representation of the object
print(BankAccount.to_json())
# convert the object into a dict
bank_account_dict = bank_account_instance.to_dict()
# create an instance of BankAccount from a dict
bank_account_from_dict = BankAccount.from_dict(bank_account_dict)
[Back to Model list] [Back to API list] [Back to README]