Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.33 KB

File metadata and controls

36 lines (27 loc) · 1.33 KB

SpendingList

An object with a data property that contains an array of up to limit spending. Each entry in the array is a separate spending object. If no more spending are available, the resulting array will be empty.

Properties

Name Type Description Notes
data List[SpendingListItem] [optional]
total int [optional]
per_page int [optional]
current_page int [optional]
last_page int [optional]
prev_page_url str [optional]
next_page_url str [optional]

Example

from clientapi_billingo.models.spending_list import SpendingList

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

# convert the object into a dict
spending_list_dict = spending_list_instance.to_dict()
# create an instance of SpendingList from a dict
spending_list_from_dict = SpendingList.from_dict(spending_list_dict)

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