Name | Type | Description | Notes |
---|---|---|---|
id | int | [optional] | |
organization_id | int | [optional] | |
category | Category | [optional] | |
paid_at | date | [optional] | |
fulfillment_date | date | [optional] | |
partner | SpendingPartner | [optional] | |
invoice_number | str | [optional] | |
currency | Currency | [optional] | |
conversion_rate | float | [optional] | |
total_gross | float | [optional] | |
total_gross_local | float | [optional] | |
total_vat_amount | float | [optional] | |
total_vat_amount_local | float | [optional] | |
invoice_date | date | [optional] | |
due_date | date | [optional] | |
payment_method | SpendingPaymentMethod | [optional] | |
comment | str | [optional] | |
is_created_by_nav | bool | [optional] |
from clientapi_billingo.models.spending_list_item import SpendingListItem
# TODO update the JSON string below
json = "{}"
# create an instance of SpendingListItem from a JSON string
spending_list_item_instance = SpendingListItem.from_json(json)
# print the JSON string representation of the object
print(SpendingListItem.to_json())
# convert the object into a dict
spending_list_item_dict = spending_list_item_instance.to_dict()
# create an instance of SpendingListItem from a dict
spending_list_item_from_dict = SpendingListItem.from_dict(spending_list_item_dict)