Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

File metadata and controls

31 lines (22 loc) · 1.15 KB

BalanceBreakdownItem

Breakdown item with name and amount for tax or fee breakdown

Properties

Name Type Description Notes
name str The name of the breakdown item (e.g., tax name, fee name)
amount float The amount in the smallest currency unit (e.g., cents for USD)

Example

from cloudbeds_accounting.models.balance_breakdown_item import BalanceBreakdownItem

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

# convert the object into a dict
balance_breakdown_item_dict = balance_breakdown_item_instance.to_dict()
# create an instance of BalanceBreakdownItem from a dict
balance_breakdown_item_from_dict = BalanceBreakdownItem.from_dict(balance_breakdown_item_dict)

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