Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.28 KB

AccountBalance.md

File metadata and controls

32 lines (24 loc) · 1.28 KB

AccountBalance

Properties

Name Type Description Notes
type AccountBalanceType [optional]
date_time datetime Date and time of the reported balance. [optional]
balance_amount Amount [optional]
credit_line_included bool Optional. Indicates whether any credit lines are included in the balance. [optional]
credit_lines List[CreditLine] Optional. Specifies the type of balance. [optional]

Example

from yapily.models.account_balance import AccountBalance

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

# convert the object into a dict
account_balance_dict = account_balance_instance.to_dict()
# create an instance of AccountBalance from a dict
account_balance_from_dict = AccountBalance.from_dict(account_balance_dict)

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