The tax due for the job.
Name | Type | Description | Notes |
---|---|---|---|
amount | float | Amount of the currency | |
currency | str | Type of currency | |
currency_symbol | str | Symbol to be used for this currency |
from epiccore.models.tax import Tax
# TODO update the JSON string below
json = "{}"
# create an instance of Tax from a JSON string
tax_instance = Tax.from_json(json)
# print the JSON string representation of the object
print Tax.to_json()
# convert the object into a dict
tax_dict = tax_instance.to_dict()
# create an instance of Tax from a dict
tax_form_dict = tax.from_dict(tax_dict)