Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.01 KB

MonthlyTotal.md

File metadata and controls

31 lines (22 loc) · 1.01 KB

MonthlyTotal

Properties

Name Type Description Notes
net float Monthly total net amount [optional]
gross float Monthly total gross amount [optional]
count float Monthly total receipt number [optional]

Example

from fattureincloud_python_sdk.models.monthly_total import MonthlyTotal

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

# convert the object into a dict
monthly_total_dict = monthly_total_instance.to_dict()
# create an instance of MonthlyTotal from a dict
monthly_total_from_dict = MonthlyTotal.from_dict(monthly_total_dict)

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