Name |
Type |
Description |
Notes |
id |
int |
|
[optional] [readonly] |
name |
str |
|
|
account_number |
str |
|
|
account_number_iban |
str |
|
[optional] |
swift |
str |
|
[optional] |
from clientapi_billingo.models.document_bank_account import DocumentBankAccount
# TODO update the JSON string below
json = "{}"
# create an instance of DocumentBankAccount from a JSON string
document_bank_account_instance = DocumentBankAccount.from_json(json)
# print the JSON string representation of the object
print(DocumentBankAccount.to_json())
# convert the object into a dict
document_bank_account_dict = document_bank_account_instance.to_dict()
# create an instance of DocumentBankAccount from a dict
document_bank_account_from_dict = DocumentBankAccount.from_dict(document_bank_account_dict)
[Back to Model list] [Back to API list] [Back to README]