Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.05 KB

BillingAccountBalance.md

File metadata and controls

30 lines (22 loc) · 1.05 KB

BillingAccountBalance

Properties

Name Type Description Notes
amount str [optional]
currency str [optional]
updated_at datetime [optional]

Example

from frontier_api.models.billing_account_balance import BillingAccountBalance

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

# convert the object into a dict
billing_account_balance_dict = billing_account_balance_instance.to_dict()
# create an instance of BillingAccountBalance from a dict
billing_account_balance_form_dict = billing_account_balance.from_dict(billing_account_balance_dict)

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