Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.24 KB

File metadata and controls

31 lines (22 loc) · 1.24 KB

ForeignCurrencyTotals

Multi-currency totals across all matching transactions (all pages).

Properties

Name Type Description Notes
debit Dict[str, float] Map of currency code to total debit amount (e.g. {"RON": 724.82, "EUR": 5}) [optional]
credit Dict[str, float] Map of currency code to total credit amount [optional]

Example

from cloudbeds_accounting.models.foreign_currency_totals import ForeignCurrencyTotals

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

# convert the object into a dict
foreign_currency_totals_dict = foreign_currency_totals_instance.to_dict()
# create an instance of ForeignCurrencyTotals from a dict
foreign_currency_totals_from_dict = ForeignCurrencyTotals.from_dict(foreign_currency_totals_dict)

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