Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.08 KB

File metadata and controls

32 lines (23 loc) · 1.08 KB

TaxMapping

Properties

Name Type Description Notes
tax_id int Tax ID from the accounting system
category str Tax category code (e.g., VAT, ISR)
key str Tax key describing the tax situation (e.g., standard, exempt)
rate str Rate within the category and key (e.g., general, reduced)

Example

from cloudbeds_fiscal_document.models.tax_mapping import TaxMapping

# TODO update the JSON string below
json = "{}"
# create an instance of TaxMapping from a JSON string
tax_mapping_instance = TaxMapping.from_json(json)
# print the JSON string representation of the object
print(TaxMapping.to_json())

# convert the object into a dict
tax_mapping_dict = tax_mapping_instance.to_dict()
# create an instance of TaxMapping from a dict
tax_mapping_from_dict = TaxMapping.from_dict(tax_mapping_dict)

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