Skip to content

Latest commit

 

History

History
executable file
·
32 lines (23 loc) · 889 Bytes

Tax.md

File metadata and controls

executable file
·
32 lines (23 loc) · 889 Bytes

Tax

The tax due for the job.

Properties

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

Example

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)

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