Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.1 KB

ListF24ResponseAggregatedData.md

File metadata and controls

29 lines (20 loc) · 1.1 KB

ListF24ResponseAggregatedData

Properties

Name Type Description Notes
amount float Total amount. [optional]

Example

from fattureincloud_python_sdk.models.list_f24_response_aggregated_data import ListF24ResponseAggregatedData

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

# convert the object into a dict
list_f24_response_aggregated_data_dict = list_f24_response_aggregated_data_instance.to_dict()
# create an instance of ListF24ResponseAggregatedData from a dict
list_f24_response_aggregated_data_from_dict = ListF24ResponseAggregatedData.from_dict(list_f24_response_aggregated_data_dict)

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