Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.38 KB

BankAccountList.md

File metadata and controls

36 lines (27 loc) · 1.38 KB

BankAccountList

A object with a data property that contains an array of up to limit bank accounts. Each entry in the array is a separate bank account object. If no more bank accounts are available, the resulting array will be empty.

Properties

Name Type Description Notes
data List[BankAccount] [optional]
total int [optional]
per_page int [optional]
current_page int [optional]
last_page int [optional]
prev_page_url str [optional]
next_page_url str [optional]

Example

from clientapi_billingo.models.bank_account_list import BankAccountList

# TODO update the JSON string below
json = "{}"
# create an instance of BankAccountList from a JSON string
bank_account_list_instance = BankAccountList.from_json(json)
# print the JSON string representation of the object
print(BankAccountList.to_json())

# convert the object into a dict
bank_account_list_dict = bank_account_list_instance.to_dict()
# create an instance of BankAccountList from a dict
bank_account_list_from_dict = BankAccountList.from_dict(bank_account_list_dict)

[Back to Model list] [Back to API list] [Back to README]