| 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] |
from clientapi_billingo.models.spending import Spending
# TODO update the JSON string below
json = "{}"
# create an instance of Spending from a JSON string
spending_instance = Spending.from_json(json)
# print the JSON string representation of the object
print(Spending.to_json())
# convert the object into a dict
spending_dict = spending_instance.to_dict()
# create an instance of Spending from a dict
spending_from_dict = Spending.from_dict(spending_dict)