| Name | Type | Description | Notes |
|---|---|---|---|
| var_date | date | ||
| price | float | ||
| payment_method | PaymentMethod | ||
| voucher_number | str | [optional] | |
| conversion_rate | float | [optional] |
from clientapi_billingo.models.payment_history import PaymentHistory
# TODO update the JSON string below
json = "{}"
# create an instance of PaymentHistory from a JSON string
payment_history_instance = PaymentHistory.from_json(json)
# print the JSON string representation of the object
print(PaymentHistory.to_json())
# convert the object into a dict
payment_history_dict = payment_history_instance.to_dict()
# create an instance of PaymentHistory from a dict
payment_history_from_dict = PaymentHistory.from_dict(payment_history_dict)